:root {
  --sage-green: #8FA68E;
  --sage-green-light: #B4C7B3;
  --sage-green-dark: #6B8368;
  --text-dark: #2C3E2E;
  --text-gray: #5A5A5A;
  --bg-light: #F9FAF8;
  --white: #FFFFFF;
}

* {
  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);
  background-color: var(--white);
  line-height: 1.6;
}

.navbar {
  background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--sage-green-dark) !important;
  letter-spacing: 0.5px;
}

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

.nav-link:hover {
  color: var(--sage-green) !important;
}

.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

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

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

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

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

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.content-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(143, 166, 142, 0.1);
}

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

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

.content-card p {
  color: var(--text-gray);
  margin-bottom: 0.75rem;
}

.content-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.info-box {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
  border-left: 4px solid var(--sage-green);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.info-box h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--sage-green-dark);
  margin-bottom: 0.75rem;
}

.info-box p {
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

.disclaimer-box {
  background: linear-gradient(135deg, #FFF8E1 0%, #FFFBF0 100%);
  border: 2px solid #FFD54F;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

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

.disclaimer-box p {
  color: var(--text-gray);
  margin-bottom: 0.75rem;
}

.table-responsive {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.table {
  margin-bottom: 0;
}

.table thead {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--sage-green-dark) 100%);
  color: var(--white);
}

.table thead th {
  font-weight: 600;
  border: none;
  padding: 1rem;
}

.table tbody tr {
  transition: background-color 0.3s ease;
}

.table tbody tr:hover {
  background-color: var(--bg-light);
}

.table tbody td {
  padding: 1rem;
  color: var(--text-gray);
}

.cta-section {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--sage-green-dark) 100%);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
  border-radius: 12px;
  margin: 3rem 0;
}

.cta-section h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-custom {
  background: var(--white);
  color: var(--sage-green-dark);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  color: var(--sage-green-dark);
  text-decoration: none;
}

.footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #1A2419 100%);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--sage-green-light);
}

.footer p, .footer a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--sage-green-light);
  text-decoration: none;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--text-dark) 0%, #1A2419 100%);
  color: var(--white);
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.9);
}

.cookie-banner .btn {
  background: var(--sage-green);
  color: var(--white);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-banner .btn:hover {
  background: var(--sage-green-dark);
}

.page-header {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
  padding: 3rem 0;
  margin-bottom: 3rem;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
}

.contact-info {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(143, 166, 142, 0.1);
}

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

.contact-info p {
  color: var(--text-gray);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-info a {
  color: var(--sage-green);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--sage-green-dark);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .content-card {
    padding: 1.5rem;
  }
  
  .hero-image {
    height: 300px;
  }
  
  .content-image {
    height: 200px;
  }
}
