:root {
  --primary-green: #4a7c59;
  --primary-green-dark: #3a5f46;
  --primary-green-light: #6b9a7a;
  --accent-gold: #d4a574;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
}

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

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

p {
  margin-bottom: 1rem;
}

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

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

.header-nav {
  background-color: var(--bg-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

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

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

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

.hero-overlay {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 90%;
  max-width: 800px;
}

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

.hero-content .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

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

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

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

.btn-outline-light {
  color: white;
  border: 2px solid white;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

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

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

.page-header {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
  color: white;
  padding: 4rem 0 !important;
}

.page-header h1 {
  color: white;
}

.page-header .lead {
  color: rgba(255, 255, 255, 0.95);
}

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

.feature-card:hover,
.info-card:hover,
.ingredient-card:hover,
.guide-card:hover,
.routine-card:hover,
.selection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.feature-card h4,
.info-card h4,
.ingredient-card h5,
.guide-card h5,
.routine-card h5,
.selection-card h5 {
  color: var(--primary-green);
  margin-top: 1rem;
}

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

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

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

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

.ingredients-block {
  background-color: var(--bg-light);
  padding: 1rem;
  border-radius: 8px;
  margin-top: auto;
}

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

.ingredient-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.ingredient-list li {
  padding: 0.25rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.ingredient-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
}

.disclaimer-box {
  background-color: var(--bg-light);
  border-left: 4px solid var(--accent-gold);
  padding: 2rem;
  border-radius: 8px;
}

.testimonial-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
}

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

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

.faq-item {
  padding: 1rem 0;
}

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

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

.cta-section h2,
.cta-section .lead {
  color: white;
}

.footer {
  background-color: var(--text-dark);
  color: rgba(255, 255, 255, 0.8);
}

.footer-brand {
  color: var(--primary-green-light);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer h6 {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.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(--primary-green-light);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(44, 62, 80, 0.98);
  color: white;
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

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

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

.cookie-banner a {
  color: var(--primary-green-light);
  text-decoration: underline;
}

.cookie-banner .btn-sm {
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
}

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

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

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

.business-hours {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: 12px;
}

.faq-topic {
  background-color: var(--bg-white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.faq-topic h5 {
  color: var(--primary-green);
}

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  display: inline-block;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.checkmark {
  color: white;
  font-size: 3rem;
  font-weight: bold;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h2 {
  color: var(--primary-green);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-color);
}

.policy-content h4 {
  color: var(--primary-green-dark);
  margin-top: 1.5rem;
}

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

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

.alert-warning {
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.alert-warning h4 {
  color: #856404;
}

.approach-card,
.transparency-card,
.info-box,
.selection-guide {
  background-color: var(--bg-white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.icon-text {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.why-choose-list {
  list-style: none;
  padding: 0;
}

.why-choose-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.why-choose-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
  font-size: 1.2rem;
}

.contact-info-box {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  display: inline-block;
}

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

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

  .hero-section {
    height: 400px;
  }

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