:root {
  --sage-green: #9CAF88;
  --sage-green-light: #B8C9A9;
  --sage-green-dark: #7A9068;
  --text-primary: #2D3436;
  --text-secondary: #636E72;
  --bg-light: #FAFBF9;
  --bg-white: #FFFFFF;
  --border-color: #E8EDE5;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

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

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

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

.navbar {
  background-color: var(--bg-white);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sage-green-dark);
}

.navbar-brand:hover {
  color: var(--sage-green);
}

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

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

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%239CAF88' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  padding: 4rem 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.hero-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

.section {
  padding: 4rem 0;
}

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

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--sage-green);
  border-radius: 2px;
}

.content-block {
  margin-bottom: 2rem;
}

.content-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--border-color);
  transition: box-shadow 0.3s ease;
}

.content-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.image-card {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.image-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.image-row .image-card {
  flex: 1;
  margin-bottom: 0;
}

.image-row .image-card img {
  height: 180px;
}

.limits-block {
  background: linear-gradient(135deg, var(--bg-light) 0%, #E8EDE5 100%);
  border-radius: 12px;
  padding: 2.5rem;
  border-left: 4px solid var(--sage-green);
}

.limits-block h3 {
  color: var(--sage-green-dark);
  margin-bottom: 1.5rem;
}

.limits-block ul {
  list-style: none;
  padding: 0;
}

.limits-block ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
}

.limits-block ul li::before {
  content: '•';
  color: var(--sage-green);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.btn-sage {
  background-color: var(--sage-green);
  color: var(--bg-white);
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-sage:hover {
  background-color: var(--sage-green-dark);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(156, 175, 136, 0.4);
}

.btn-outline-sage {
  background-color: transparent;
  color: var(--sage-green-dark);
  border: 2px solid var(--sage-green);
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline-sage:hover {
  background-color: var(--sage-green);
  color: var(--bg-white);
}

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

.cta-section h2 {
  color: var(--bg-white);
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.footer {
  background-color: var(--text-primary);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
}

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

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

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

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

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

.footer-contact p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

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

.footer-disclaimer {
  background-color: rgba(0,0,0,0.2);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  text-align: center;
}

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

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

.page-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--sage-green-dark);
}

.page-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.page-content ul, .page-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  color: var(--text-secondary);
}

.page-content li {
  margin-bottom: 0.5rem;
}

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

.contact-form .form-control {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--sage-green);
  box-shadow: 0 0 0 3px rgba(156, 175, 136, 0.2);
  outline: none;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(156, 175, 136, 0.1);
  border-radius: 6px;
}

.contact-info {
  padding: 2rem;
}

.contact-info-item {
  margin-bottom: 1.5rem;
}

.contact-info-item h4 {
  font-size: 1rem;
  color: var(--sage-green-dark);
  margin-bottom: 0.5rem;
}

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

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: var(--sage-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.thank-you-icon svg {
  width: 40px;
  height: 40px;
  stroke: white;
}

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

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

.cookie-banner p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-feature {
  text-align: center;
  padding: 2rem 1rem;
}

.about-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--sage-green-light), var(--sage-green));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.about-feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-section {
    padding: 3rem 0;
    min-height: auto;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .image-row {
    flex-direction: column;
  }
  
  .image-row .image-card img {
    height: 200px;
  }
  
  .footer {
    text-align: center;
  }
  
  .footer-links {
    margin-bottom: 1.5rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
}
