:root {
  --primary-green: #2d5f3f;
  --light-green: #5a8f6f;
  --soft-cream: #f8f6f3;
  --warm-white: #ffffff;
  --text-dark: #2c3e50;
  --text-muted: #6c757d;
  --border-light: #e0e0e0;
}

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

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--warm-white);
}

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

.navbar {
  border-bottom: 1px solid var(--border-light);
}

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

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
}

.hero-image-wrapper {
  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;
  right: 0;
  bottom: 0;
  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-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 20px;
}

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

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

.btn-hero {
  background-color: var(--primary-green);
  color: white;
  padding: 12px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  background-color: var(--light-green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  border-radius: 25px;
  padding: 10px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--light-green);
  border-color: var(--light-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline-primary {
  color: var(--primary-green);
  border-color: var(--primary-green);
  border-radius: 25px;
  padding: 10px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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

.section-text {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.product-card,
.target-group,
.collection-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover,
.target-group:hover,
.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-card img,
.target-group img,
.collection-card img {
  border-radius: 8px;
}

.info-box {
  background-color: var(--soft-cream);
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-green);
}

.benefit-box,
.value-box,
.approach-box {
  background-color: var(--soft-cream);
  padding: 1.5rem;
  border-radius: 8px;
  height: 100%;
  transition: transform 0.3s ease;
}

.benefit-box:hover,
.value-box:hover,
.approach-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.routine-step {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 2px solid var(--border-light);
  height: 100%;
}

.testimonial-card {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

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

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

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
}

.faq-header button {
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: none;
  padding: 1rem;
}

.faq-header button:hover {
  color: var(--primary-green);
  text-decoration: none;
}

.faq-body {
  padding: 1rem;
  background-color: var(--soft-cream);
}

.cta-section {
  background-color: var(--soft-cream);
  border-radius: 15px;
  margin-top: 3rem;
}

.page-header {
  border-bottom: 3px solid var(--primary-green);
}

.product-detail-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content {
  padding: 1.5rem;
}

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

.product-category {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

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

.product-features h5 {
  color: var(--primary-green);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.product-features ul {
  margin-bottom: 1rem;
}

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

.faq-box {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  height: 100%;
}

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

.thank-you-box {
  background-color: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.success-icon {
  display: flex;
  justify-content: center;
}

.check-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--primary-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
}

.benefit-item .icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto;
}

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

.legal-content h3 {
  color: var(--text-dark);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content ul {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 2rem;
}

.legal-content a {
  color: var(--primary-green);
  font-weight: 600;
}

.legal-content a:hover {
  color: var(--light-green);
  text-decoration: underline;
}

.footer {
  margin-top: 4rem;
}

.footer a {
  transition: color 0.3s ease;
}

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

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

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

.cookie-banner p {
  margin: 0;
  color: white;
}

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

.cookie-banner a:hover {
  color: white;
}

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

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

  .hero-image-wrapper {
    height: 400px;
  }

  .product-image-wrapper {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-image-wrapper {
    height: 350px;
  }
}
