:root {
  --primary-green: #2d5016;
  --primary-green-light: #3d6821;
  --primary-green-dark: #1d3810;
  --secondary-green: #5a8f3a;
  --accent-gold: #c9a961;
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --text-light: #6a6a6a;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-cream: #fafaf8;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

* {
  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(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--primary-green-light);
}

.header-main {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  letter-spacing: -0.5px;
}

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

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

.hero-section {
  position: relative;
  width: 100%;
  margin-bottom: 4rem;
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--bg-white);
  font-weight: 300;
  line-height: 1.5;
}

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

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-size: 1.125rem;
  color: var(--bg-white);
  opacity: 0.9;
}

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

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

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.section-text {
  font-size: 1.0625rem;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

.topic-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1.0625rem;
  color: var(--text-medium);
}

.topic-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 8px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 50%;
}

.feature-card {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.75rem;
}

.feature-text {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 0;
}

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

.principle-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.principle-text {
  font-size: 1rem;
  color: var(--text-medium);
  margin-bottom: 0;
}

.qa-container {
  margin-top: 2rem;
}

.qa-item {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

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

.qa-question {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.75rem;
}

.qa-answer {
  font-size: 1.0625rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  padding: 4rem 0;
  text-align: center;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.125rem;
  color: var(--bg-white);
  margin-bottom: 2rem;
  opacity: 0.95;
}

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

.btn-primary:hover {
  background-color: #b89551;
  border-color: #b89551;
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline-primary:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--text-dark);
}

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

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.contact-detail {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.8;
}

.contact-detail strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.25rem;
}

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

.contact-form .form-control {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(45, 80, 22, 0.15);
}

.contact-form label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-check-label {
  font-weight: 400;
}

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

.thank-you-icon {
  margin-bottom: 2rem;
}

.thank-you-icon svg {
  margin: 0 auto;
}

.thank-you-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.thank-you-text {
  font-size: 1.125rem;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.thank-you-actions {
  margin-top: 2.5rem;
}

.legal-content {
  font-size: 1rem;
  color: var(--text-medium);
}

.legal-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-title:first-child {
  margin-top: 0;
}

.legal-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-text {
  font-size: 1.0625rem;
  color: var(--text-medium);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-list {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-list li {
  margin-bottom: 0.5rem;
  font-size: 1.0625rem;
  color: var(--text-medium);
  line-height: 1.7;
}

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

.contact-box p {
  margin-bottom: 0.5rem;
}

.disclaimer-notice {
  background-color: #fff8e1;
  border-left: 4px solid var(--accent-gold);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 3rem;
}

.notice-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.notice-text {
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.7;
}

.footer {
  background-color: var(--primary-green-dark);
  color: var(--bg-white);
  padding: 3rem 0 1rem;
}

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

.footer-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

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

.footer-contact {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-contact strong {
  color: var(--bg-white);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-legal {
  margin-top: 0.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--bg-white);
}

.separator {
  margin: 0 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

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

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

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

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

.cookie-banner .btn-light {
  background-color: var(--bg-white);
  color: var(--primary-green);
  border: none;
  font-weight: 600;
}

.cookie-banner .btn-outline-light {
  background-color: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
  font-weight: 600;
}

.cookie-banner .btn-outline-light:hover {
  background-color: var(--bg-white);
  color: var(--primary-green);
}

@media (max-width: 991px) {
  .hero-image-container {
    height: 400px;
  }

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

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

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

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

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

@media (max-width: 767px) {
  .hero-image-container {
    height: 300px;
  }

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

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

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

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

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

  .cookie-banner .col-md-7,
  .cookie-banner .col-md-5 {
    text-align: center;
  }

  .cookie-banner .btn {
    margin-bottom: 0.5rem;
  }
}
