:root {
  --primary-yellow: #f5c542;
  --primary-yellow-dark: #e6b42f;
  --primary-yellow-light: #f8d870;
  --neutral-white: #ffffff;
  --neutral-light: #f8f9fa;
  --neutral-gray: #6c757d;
  --neutral-dark: #343a40;
  --neutral-black: #1a1a1a;
}

* {
  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);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--neutral-black);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--neutral-black);
}

.btn-primary {
  background-color: var(--primary-yellow);
  border-color: var(--primary-yellow);
  color: var(--neutral-black);
  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-black);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 197, 66, 0.3);
}

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

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

.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-brand .brand-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-yellow-dark);
}

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

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

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

.hero-image {
  position: relative;
  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(to right, rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.3));
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  color: var(--neutral-white);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-content .lead {
  color: var(--neutral-white);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

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

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

.section-intro {
  font-size: 1.125rem;
  color: var(--neutral-gray);
  margin-bottom: 2rem;
}

.image-card {
  margin-bottom: 1.5rem;
}

.image-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.image-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.features-list {
  list-style: none;
  padding-left: 0;
}

.features-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

.features-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-yellow-dark);
  font-weight: bold;
  font-size: 1.25rem;
}

.disclaimer-box {
  background-color: var(--primary-yellow-light);
  border-left: 4px solid var(--primary-yellow-dark);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-text {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--neutral-gray);
}

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

.testimonial-card p {
  margin-bottom: 1rem;
}

.client-name {
  font-weight: 600;
  color: var(--neutral-gray);
  font-style: italic;
}

.faq-section {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2rem;
}

.faq-item h4 {
  color: var(--primary-yellow-dark);
  margin-bottom: 0.75rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-yellow-light) 0%, var(--primary-yellow) 100%);
  padding: 5rem 0;
}

.cta-section h2 {
  color: var(--neutral-black);
  margin-bottom: 1rem;
}

.cta-section .lead {
  color: var(--neutral-dark);
  margin-bottom: 2rem;
}

.page-header {
  background-color: var(--neutral-light);
  padding: 3rem 0;
  margin-bottom: 3rem;
}

.page-header h1 {
  margin-bottom: 0.5rem;
}

.approach-list,
.transparency-list,
.serve-list {
  margin: 1.5rem 0;
}

.contact-info h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-hours {
  background-color: var(--neutral-light);
  padding: 1.5rem;
  border-radius: 8px;
}

.form-control:focus {
  border-color: var(--primary-yellow);
  box-shadow: 0 0 0 0.2rem rgba(245, 197, 66, 0.25);
}

.thank-you-section {
  padding: 6rem 0;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

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

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

.policy-content ul {
  margin: 1rem 0 1.5rem 2rem;
}

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

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

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

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

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

.footer-links a {
  color: var(--neutral-light);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.footer-legal {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-legal li {
  margin: 0 1rem 0.5rem;
}

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

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

.copyright {
  text-align: center;
  color: var(--neutral-gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

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

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

.cookie-banner p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

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

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

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

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

  .hero-image {
    height: 400px;
  }

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

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

  .page-header {
    padding: 2rem 0;
  }

  .footer-legal {
    flex-direction: column;
    align-items: center;
  }

  .footer-legal li {
    margin: 0.25rem 0;
  }
}
