:root {
  --primary-color: #4a9d5f;
  --primary-dark: #3a7d4f;
  --primary-light: #e8f5eb;
  --secondary-color: #2c3e50;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #dee2e6;
  --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

* {
  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;
  overflow-x: hidden;
}

.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

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

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

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

.hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-white) 100%);
}

.page-header {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-white) 100%);
}

.section-padding {
  padding: 80px 0;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 3rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 157, 95, 0.3);
}

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

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

.info-card,
.benefit-card,
.principle-card,
.audience-card {
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.info-card:hover,
.benefit-card:hover,
.principle-card:hover,
.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.info-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.info-card h4,
.benefit-card h4,
.principle-card h4,
.audience-card h5 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-list,
.approach-list,
.contact-benefits {
  list-style: none;
  padding: 0;
}

.feature-list li,
.approach-list li,
.contact-benefits li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li:before,
.approach-list li:before,
.contact-benefits li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.balance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.balance-item {
  padding: 1rem;
  background: var(--primary-light);
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
}

.balance-item strong {
  color: var(--primary-color);
}

.testimonial-card {
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  height: 100%;
}

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

.testimonial-author {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0;
}

.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
}

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

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

.footer {
  background: var(--secondary-color);
  color: var(--bg-white);
  padding: 60px 0 20px;
}

.footer h5,
.footer h6 {
  color: var(--bg-white);
  font-weight: 700;
}

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

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

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

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

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

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

.cookie-consent p {
  margin-bottom: 0;
  color: var(--bg-white);
}

.cookie-consent a {
  color: var(--bg-white);
}

.contact-form-wrapper {
  padding: 2.5rem;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.contact-info-box {
  padding: 1.5rem;
  background: var(--primary-light);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.thank-you-section {
  padding: 150px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto;
}

.thank-you-content {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.policy-content h3 {
  color: var(--primary-color);
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

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

.contact-box,
.location-info,
.disclaimer-box {
  padding: 1.5rem;
  background: var(--primary-light);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  margin-top: 1rem;
}

@media (max-width: 991px) {
  .hero-section,
  .page-header {
    padding: 100px 0 60px;
  }

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

  .balance-grid {
    grid-template-columns: 1fr;
  }

  .nav-link {
    margin-left: 0;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }

  .hero-section,
  .page-header {
    padding: 80px 0 40px;
  }

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

  .contact-form-wrapper {
    padding: 1.5rem;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.rounded {
  border-radius: 12px !important;
}

.shadow {
  box-shadow: var(--shadow) !important;
}
