body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  background-color: #ffffff;
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

.brand-logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2d5016;
  letter-spacing: -0.5px;
}

.nav-link {
  color: #4a4a4a;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #2d5016;
}

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8faf7 0%, #ffffff 100%);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #4a4a4a;
  line-height: 1.6;
}

.btn-primary {
  background-color: #2d5016;
  border-color: #2d5016;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #1f3810;
  border-color: #1f3810;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.btn-outline-primary {
  color: #2d5016;
  border-color: #2d5016;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #2d5016;
  border-color: #2d5016;
  color: #ffffff;
}

.btn-outline-secondary {
  color: #4a4a4a;
  border-color: #d0d0d0;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.btn-outline-secondary:hover {
  background-color: #f5f5f5;
  border-color: #b0b0b0;
  color: #1a1a1a;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #4a4a4a;
}

.section-text {
  font-size: 1.0625rem;
  color: #4a4a4a;
  line-height: 1.7;
}

.card {
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-radius: 8px;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #2d5016;
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.service-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card-body {
  background: #ffffff;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.service-description {
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.testimonial-text {
  font-style: italic;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: #2d5016;
}

.who-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.who-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.section-cta {
  background: linear-gradient(135deg, #2d5016 0%, #1f3810 100%);
  color: #ffffff;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: #f0f0f0;
}

.footer {
  background-color: #1a1a1a;
  color: #d0d0d0;
}

.footer-title {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-text {
  color: #d0d0d0;
  line-height: 1.7;
}

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

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

.footer-links a {
  color: #d0d0d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-divider {
  border-color: #3a3a3a;
  margin: 2rem 0;
}

.footer-copyright {
  color: #b0b0b0;
  margin: 0;
}

.footer-legal-link {
  color: #b0b0b0;
  text-decoration: none;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: #ffffff;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #ffffff;
  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-banner p {
  margin: 0;
  color: #d0d0d0;
}

.cookie-banner a {
  color: #7fb069;
  text-decoration: underline;
}

.page-header {
  background: linear-gradient(135deg, #f8faf7 0%, #ffffff 100%);
  padding: 3rem 0;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
}

.page-subtitle {
  font-size: 1.125rem;
  color: #4a4a4a;
}

.benefit-item h5 {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.benefit-item p {
  color: #4a4a4a;
  line-height: 1.7;
}

.value-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.value-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.value-title {
  font-weight: 700;
  color: #2d5016;
}

.value-text {
  color: #4a4a4a;
  line-height: 1.7;
}

.why-item {
  margin-bottom: 1.5rem;
}

.why-icon {
  width: 30px;
  height: 30px;
  background-color: #2d5016;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.why-title {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.why-text {
  color: #4a4a4a;
  line-height: 1.7;
}

.contact-info-card {
  background: #f8faf7;
  border-radius: 8px;
}

.contact-info-title {
  font-weight: 700;
  color: #2d5016;
  margin-bottom: 0.5rem;
}

.contact-info-text {
  color: #4a4a4a;
  line-height: 1.7;
}

.contact-form .form-control {
  border: 2px solid #e0e0e0;
  padding: 0.75rem;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #2d5016;
  box-shadow: 0 0 0 0.2rem rgba(45, 80, 22, 0.1);
}

.contact-form label {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.service-detail-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
}

.service-detail-text {
  color: #4a4a4a;
  line-height: 1.7;
}

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

.service-detail-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: #4a4a4a;
  line-height: 1.7;
}

.service-detail-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2d5016;
  font-weight: 700;
}

.process-step {
  padding: 2rem 1rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background-color: #2d5016;
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.process-title {
  font-weight: 700;
  color: #1a1a1a;
}

.process-text {
  color: #4a4a4a;
  line-height: 1.7;
}

.faq-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.faq-question {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: #4a4a4a;
  line-height: 1.7;
}

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  background: #f8faf7;
  border-radius: 12px;
  padding: 3rem;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background-color: #2d5016;
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 auto;
}

.thank-you-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
}

.thank-you-text {
  font-size: 1.125rem;
  color: #4a4a4a;
  line-height: 1.7;
}

.next-step {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.next-step h5 {
  font-weight: 700;
  color: #2d5016;
}

.next-step p {
  color: #4a4a4a;
  line-height: 1.7;
}

.legal-content {
  background: #ffffff;
}

.legal-section {
  padding-bottom: 2rem;
}

.legal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
}

.legal-text {
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 1rem;
}

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

.legal-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: #4a4a4a;
  line-height: 1.8;
}

.legal-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2d5016;
  font-weight: 700;
}

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

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .thank-you-title {
    font-size: 1.75rem;
  }

  .footer-legal-link {
    margin-left: 0;
    margin-right: 1rem;
    display: inline-block;
    margin-bottom: 0.5rem;
  }
}
