:root {
  --primary-yellow: #f4c430;
  --light-yellow: #fff9e6;
  --dark-yellow: #e0b020;
  --neutral-light: #f8f9fa;
  --neutral-gray: #6c757d;
  --neutral-dark: #343a40;
  --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(--neutral-dark);
  line-height: 1.6;
  background-color: var(--white);
}

.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.navbar-brand.logo:hover {
  color: var(--dark-yellow);
}

.nav-link {
  color: var(--neutral-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

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

.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.hero-image {
  width: 100%;
  height: 100%;
}

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

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(244, 196, 48, 0.9), rgba(224, 176, 32, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content .lead {
  color: var(--white);
  font-size: 1.25rem;
  max-width: 800px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-header {
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--primary-yellow);
}

.page-header h1 {
  color: var(--neutral-dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-header .lead {
  color: var(--neutral-gray);
  font-size: 1.1rem;
}

.content-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: var(--neutral-light);
  border-radius: 12px;
}

.content-section h2 {
  color: var(--neutral-dark);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

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

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

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

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

.image-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.image-grid.one-col {
  grid-template-columns: 1fr;
}

.image-grid.two-col {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.image-grid.three-col {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.image-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faq-list {
  margin-top: 1.5rem;
}

.faq-item {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  color: var(--primary-yellow);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.faq-item p {
  margin-bottom: 0;
}

.cta-section {
  margin: 4rem 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.cta-box h2 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-box p {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

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

.btn-primary:hover {
  background-color: var(--neutral-gray);
  border-color: var(--neutral-gray);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-outline-primary {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-left: 1rem;
}

.btn-outline-primary:hover {
  background-color: var(--white);
  color: var(--primary-yellow);
  transform: translateY(-2px);
}

.contact-info {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-form {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
  border: 2px solid var(--neutral-light);
  border-radius: 6px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-yellow);
  box-shadow: 0 0 0 0.2rem rgba(244, 196, 48, 0.25);
}

.thank-you-section {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-content {
  background-color: var(--neutral-light);
  padding: 3rem;
  border-radius: 12px;
  max-width: 600px;
}

.thank-you-content h1 {
  color: var(--primary-yellow);
  margin-bottom: 1.5rem;
}

.thank-you-actions {
  margin-top: 2rem;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h2 {
  color: var(--neutral-dark);
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-yellow);
}

.footer {
  background-color: var(--neutral-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h4 {
  color: var(--primary-yellow);
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer p {
  color: var(--neutral-light);
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: var(--neutral-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-yellow);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--neutral-gray);
  text-align: center;
}

.footer-bottom p {
  color: var(--neutral-gray);
  margin: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--neutral-dark);
  color: var(--white);
  padding: 1.5rem;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

.cookie-content a {
  color: var(--primary-yellow);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-buttons .btn {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hero {
    height: 400px;
  }

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

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

  .content-section {
    padding: 1.5rem;
  }

  .image-grid.two-col,
  .image-grid.three-col {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 2rem;
  }

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }
}
