:root {
  --primary-green: #4a7c59;
  --primary-green-dark: #3a6247;
  --primary-green-light: #5a9369;
  --secondary-green: #e8f5e9;
  --text-dark: #2c3e35;
  --text-light: #6c757d;
  --background-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #dee2e6;
}

* {
  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;
  font-size: 16px;
}

.main-header {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  transition: opacity 0.3s ease;
}

.navbar-brand:hover {
  color: var(--white);
  opacity: 0.9;
}

.brand-text {
  color: var(--white);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
}

.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='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  border-radius: 6px;
  margin: 0 0.25rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.15);
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: relative;
  max-height: 600px;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 124, 89, 0.85) 0%, rgba(58, 98, 71, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: var(--white);
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content .lead {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
  border: none;
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

.btn-outline-primary {
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: transparent;
}

.btn-outline-primary:hover {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  border-color: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: var(--text-light);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #5a6268;
  transform: translateY(-2px);
}

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

.content-section h2 {
  color: var(--primary-green-dark);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.content-section h3 {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

.content-section h4 {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.content-section p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

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

.feature-card,
.info-box,
.ingredient-card,
.routine-card,
.tip-card,
.lifestyle-box,
.habit-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover,
.info-box:hover,
.ingredient-card:hover,
.routine-card:hover,
.tip-card:hover,
.lifestyle-box:hover,
.habit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.feature-card img,
.info-box img,
.ingredient-card img,
.routine-card img,
.tip-card img,
.lifestyle-box img,
.habit-card img {
  border-radius: 8px;
}

.disclaimer-box {
  background: var(--secondary-green);
  border-left: 4px solid var(--primary-green);
  padding: 1.5rem;
  border-radius: 8px;
}

.disclaimer-section {
  margin-top: 2rem;
}

.disclaimer-section .alert {
  border-radius: 8px;
  border: none;
  margin-bottom: 1rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--primary-green);
  height: 100%;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--primary-green);
  font-style: normal;
}

.faq-item {
  background: var(--white);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-green);
}

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

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

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

.cta-section .lead {
  opacity: 0.95;
}

.page-header {
  background: linear-gradient(135deg, var(--secondary-green) 0%, var(--background-light) 100%);
  border-bottom: 2px solid var(--primary-green);
}

.page-header h1 {
  color: var(--primary-green-dark);
  font-weight: 700;
}

.product-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-green);
}

.product-card h4 {
  color: var(--primary-green-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-description {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.ingredients-box {
  background: var(--secondary-green);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.ingredients-box h6 {
  color: var(--primary-green-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.ingredients-box ul {
  margin-bottom: 0.75rem;
  padding-left: 1.25rem;
}

.product-info-section {
  background: var(--secondary-green);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-green);
}

.contact-details {
  background: var(--background-light);
  padding: 1.5rem;
  border-radius: 8px;
}

.contact-info-box {
  background: var(--secondary-green);
  padding: 2rem;
  border-radius: 8px;
  margin-top: 1rem;
}

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

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(74, 124, 89, 0.15);
}

.form-check-input:checked {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

.thank-you-box {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--primary-green);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--primary-green);
}

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

.main-footer {
  background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--text-dark) 100%);
  color: var(--white);
}

.main-footer h5 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1rem;
}

.main-footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 0 0.5rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--white);
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-green-dark);
  color: var(--white);
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.cookie-content a {
  color: var(--white);
  text-decoration: underline;
}

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

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

.rounded {
  border-radius: 8px;
}

@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content .lead {
    font-size: 1.25rem;
  }

  .navbar-collapse {
    background: rgba(58, 98, 71, 0.95);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
  }
}

@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-content .lead {
    font-size: 1.125rem;
  }

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}
