* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #6ec9c0;
  --primary-hover: #5ab5ac;
  --text-dark: #2c3e50;
  --text-light: #5a6c7d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e6ed;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  padding-top: 76px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-hover);
  text-decoration: none;
}

.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.navbar-brand:hover {
  color: var(--primary-color);
}

.nav-link {
  color: var(--text-dark);
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(110, 201, 192, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(110, 201, 192, 0.4);
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-color) 100%);
}

.hero-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f3 100%);
  padding: 6rem 0;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.hero-section .lead {
  font-size: 1.15rem;
  color: var(--text-light);
}

.hero-section img {
  border-radius: 12px;
}

section {
  padding: 4rem 0;
}

.bg-light {
  background-color: var(--bg-light);
}

.card {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.card-img-top {
  height: 220px;
  object-fit: cover;
}

.card-title {
  color: var(--text-dark);
  font-weight: 600;
}

.card-text {
  color: var(--text-light);
}

.shadow-sm {
  box-shadow: var(--shadow);
}

.shadow {
  box-shadow: var(--shadow-hover);
}

.rounded {
  border-radius: 10px;
}

.accordion .card {
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.accordion .card-header {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
}

.accordion .btn-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
}

.accordion .btn-link:hover {
  color: var(--primary-color);
}

footer {
  background-color: #2c3e50;
}

footer h5 {
  color: var(--bg-white);
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--bg-white);
}

.list-inline-item:not(:last-child) {
  margin-right: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.cookie-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-content {
  background-color: var(--bg-white);
  margin: auto;
  padding: 0;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h5 {
  margin: 0;
}

.close-modal {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
}

.close-modal:hover {
  color: var(--text-dark);
}

.cookie-modal-body {
  padding: 1.5rem;
}

.cookie-modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
  text-align: right;
}

.alert {
  border-radius: 6px;
  padding: 1rem;
}

.alert-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.alert-danger {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 4rem 0;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .navbar-collapse {
    margin-top: 1rem;
  }

  .btn-primary.ml-3 {
    margin-left: 0;
    margin-top: 1rem;
  }
}
