:root {
  --color-primary: #8fb5d1;
  --color-secondary: #f8f9fa;
  --color-text: #2c3e50;
  --color-text-light: #6c757d;
  --color-border: #dee2e6;
  --color-white: #ffffff;
}

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

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

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
}

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

.nav-link {
  color: var(--color-text);
  font-weight: 500;
}

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

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

.hero-section {
  position: relative;
  margin-bottom: 4rem;
}

.hero-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 3rem 0 2rem;
  color: var(--color-white);
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content .lead {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.disclaimer-text {
  font-size: 0.875rem;
  opacity: 0.9;
}

.content-section {
  padding: 4rem 0;
}

.content-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.content-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.content-section p {
  margin-bottom: 1rem;
  color: var(--color-text);
  line-height: 1.7;
}

.content-section ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content-section li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.card {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

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

.context-section {
  background-color: var(--color-secondary);
}

.context-box {
  background-color: var(--color-white);
  border-left: 4px solid var(--color-primary);
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.context-box p {
  margin-bottom: 1rem;
}

.context-box p:last-child {
  margin-bottom: 0;
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, #6a9bbd 100%);
  color: var(--color-white);
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section .lead {
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: var(--color-white);
  color: var(--color-primary);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-header {
  padding: 4rem 0 2rem;
  background-color: var(--color-secondary);
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-info h5 {
  color: var(--color-primary);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-info h5:first-child {
  margin-top: 0;
}

.form-group label {
  font-weight: 500;
  color: var(--color-text);
}

.form-control {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(143, 181, 209, 0.25);
}

.footer {
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer a {
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

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

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

.cookie-banner p {
  margin-bottom: 0;
}

.cookie-banner .btn-light {
  background-color: var(--color-white);
  color: var(--color-text);
  border: none;
  padding: 0.5rem 2rem;
  font-weight: 600;
  border-radius: 4px;
}

.cookie-banner .btn-light:hover {
  background-color: var(--color-secondary);
}

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

.alert-info {
  background-color: #d1ecf1;
  border: 1px solid #bee5eb;
  color: #0c5460;
}

.alert-warning {
  background-color: #fff3cd;
  border: 1px solid #ffeeba;
  color: #856404;
}

@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content .lead {
    font-size: 1rem;
  }

  .content-section h2 {
    font-size: 1.75rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-image img {
    height: 300px;
  }

  .hero-content {
    padding: 2rem 0 1rem;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .content-section {
    padding: 3rem 0;
  }

  .cta-section {
    padding: 3rem 0;
  }

  .cookie-banner .btn-light {
    margin-top: 1rem;
    width: 100%;
  }
}
