:root {
  --primary-yellow: #f7c948;
  --primary-yellow-dark: #e5b730;
  --text-dark: #2c2c2c;
  --text-light: #666666;
  --background-light: #fefdfb;
  --background-white: #ffffff;
  --border-color: #e8e8e8;
}

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

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

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

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

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

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

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

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hero-overlay {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(247, 201, 72, 0.92) 0%, rgba(247, 201, 72, 0.85) 100%);
  width: 100%;
  padding: 5rem 0;
}

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

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

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

.btn-primary:hover {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--text-dark);
  color: var(--text-dark);
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

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

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

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

.content-section p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.section-intro {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 800px;
}

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

img.img-fluid.rounded {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonials-section {
  background: linear-gradient(135deg, var(--background-light) 0%, var(--background-white) 100%);
}

.testimonial-card {
  background-color: var(--background-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-yellow);
}

.testimonial-card p {
  margin-bottom: 0.5rem;
  font-style: italic;
  color: var(--text-dark);
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-light);
  font-style: normal;
  font-size: 0.95rem;
}

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

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

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

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

.site-footer h4 {
  color: var(--background-white);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.9rem;
}

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

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

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

.contact-form {
  background-color: var(--background-light);
  padding: 2rem;
  border-radius: 8px;
}

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

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

.contact-details {
  margin-bottom: 2rem;
}

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

.contact-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

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

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

.thank-you-content {
  max-width: 600px;
}

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

.policy-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content ul,
.feature-list {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.policy-content li,
.feature-list li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

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

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

.cookie-consent.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: 300px;
  color: rgba(255, 255, 255, 0.9);
}

.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: 2rem;
  }

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

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

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

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

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