:root {
  --primary-yellow: #f4d03f;
  --primary-yellow-dark: #e8c030;
  --neutral-white: #ffffff;
  --neutral-light: #f8f9fa;
  --neutral-gray: #6c757d;
  --neutral-dark: #343a40;
  --accent-green: #52c41a;
}

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

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

.site-header {
  background-color: var(--neutral-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

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

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

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

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

.hero-section {
  position: relative;
  min-height: 500px;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(244, 208, 63, 0.85), rgba(232, 192, 48, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: var(--neutral-dark);
}

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

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

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

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

.content-section h3,
.content-section h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

.content-section p {
  margin-bottom: 1rem;
  color: var(--neutral-gray);
}

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

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

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

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

.btn-secondary:hover {
  background-color: var(--neutral-dark);
  border-color: var(--neutral-dark);
  color: var(--neutral-white);
}

.rounded {
  border-radius: 12px;
}

.testimonials-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-dark) 100%);
}

.testimonials-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--neutral-dark);
}

.testimonial-card {
  background-color: var(--neutral-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--neutral-gray);
}

.testimonial-author {
  font-weight: 600;
  color: var(--neutral-dark);
  font-style: normal;
}

.cta-section {
  padding: 4rem 0;
  background-color: var(--neutral-light);
}

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

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

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

.site-footer p {
  color: var(--neutral-light);
  font-size: 0.9rem;
}

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

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

.site-footer ul {
  padding-left: 0;
}

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

.footer-links {
  text-align: center;
  padding: 1.5rem 0 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
  margin: 0 1rem;
  font-size: 0.9rem;
}

.copyright {
  text-align: center;
  font-size: 0.85rem;
  color: var(--neutral-gray);
  margin-top: 0.5rem;
}

.page-hero {
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-dark) 100%);
  padding: 4rem 0;
  text-align: center;
}

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

.page-hero .lead {
  font-size: 1.25rem;
  color: var(--neutral-dark);
}

.contact-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--neutral-dark);
}

.form-control {
  border-radius: 8px;
  border: 1px solid #ced4da;
  padding: 0.75rem;
}

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

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.thank-you-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

.policy-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.policy-content ul {
  margin-bottom: 1.5rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

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

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
  color: var(--neutral-white);
}

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

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

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

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

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

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

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

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}
