:root {
  --primary-green: #2d7a4f;
  --primary-green-light: #52b788;
  --primary-green-dark: #1b4d3e;
  --secondary-cream: #f8f9fa;
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --text-light: #6c757d;
  --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;
  overflow-x: hidden;
}

.content-wrapper {
  padding-top: 76px;
  min-height: calc(100vh - 200px);
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--primary-green) !important;
  font-weight: 700;
}

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

.navbar-light .navbar-nav .nav-link:hover {
  color: var(--primary-green);
}

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: var(--primary-green-dark);
  border-color: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 122, 79, 0.3);
}

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

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

.hero-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.hero-description {
  font-size: 1.125rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-image {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

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

.benefit-card {
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  margin-bottom: 1.5rem;
}

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

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--text-medium);
  line-height: 1.7;
}

.product-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  height: 100%;
}

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

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.product-info p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.education-list {
  list-style: none;
  padding-left: 0;
}

.education-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-medium);
  line-height: 1.7;
}

.education-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: 700;
  font-size: 1.25rem;
}

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

.testimonial-text {
  font-style: italic;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: var(--text-dark);
  font-weight: 600;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.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 {
  color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-primary {
  background-color: var(--white);
  color: var(--primary-green);
  border-color: var(--white);
}

.cta-section .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary-green-dark);
}

.cta-section .btn-outline-primary {
  color: var(--white);
  border-color: var(--white);
}

.cta-section .btn-outline-primary:hover {
  background-color: var(--white);
  color: var(--primary-green);
}

.page-header {
  padding: 3rem 0 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  text-align: center;
}

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

.page-header .lead {
  font-size: 1.125rem;
  color: var(--text-medium);
}

.about-content img {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.value-item h4 {
  margin-bottom: 0.5rem;
}

.value-item p {
  color: var(--text-medium);
  line-height: 1.7;
}

.mission-section {
  background-color: var(--secondary-cream);
}

.approach-card {
  padding: 2rem;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s;
}

.approach-card:hover {
  transform: translateY(-5px);
}

.approach-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.approach-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.approach-card p {
  color: var(--text-medium);
  line-height: 1.7;
}

.product-card-full {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card-full:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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

.product-details {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-details h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.product-details p {
  color: var(--text-medium);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-benefits {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-benefits li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-medium);
  font-size: 0.9rem;
}

.product-benefits li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: 700;
}

.skincare-tips {
  background-color: var(--secondary-cream);
}

.tip-item h4 {
  margin-bottom: 1rem;
}

.tip-item ol {
  color: var(--text-medium);
  line-height: 1.8;
  padding-left: 1.5rem;
}

.tip-item ol li {
  margin-bottom: 0.5rem;
}

.contact-info h4 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.contact-info p {
  color: var(--text-medium);
  line-height: 1.7;
}

.contact-info a {
  color: var(--primary-green);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

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

.contact-form .form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(45, 122, 79, 0.15);
}

.contact-form .form-check-label {
  color: var(--text-medium);
  font-weight: 400;
}

.contact-form .form-check-label a {
  color: var(--primary-green);
}

.faq-item {
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 0;
}

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

.thank-you-icon {
  text-align: center;
}

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

.next-step-card {
  padding: 2rem;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.next-step-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.next-step-card p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.legal-content {
  background-color: var(--white);
}

.legal-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

.legal-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.legal-content p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content a {
  color: var(--primary-green);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.alert {
  border-radius: 8px;
  padding: 1rem 1.5rem;
}

.alert-warning {
  background-color: #fff3cd;
  border-color: #ffc107;
  color: #856404;
}

.alert-info {
  background-color: #d1ecf1;
  border-color: #17a2b8;
  color: #0c5460;
}

.footer {
  background-color: #1a1a1a;
  margin-top: 3rem;
}

.footer h5 {
  color: var(--primary-green-light);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

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

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

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

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

.footer hr {
  margin: 2rem 0;
  opacity: 0.2;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(26, 26, 26, 0.98);
  color: var(--white);
  padding: 1.5rem 0;
  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: 0;
  font-size: 0.95rem;
}

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

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

  .section-title {
    font-size: 1.75rem;
  }

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

  .hero-image {
    margin-top: 2rem;
  }

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

  .page-header h1 {
    font-size: 2rem;
  }
}

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

  .section-title {
    font-size: 1.5rem;
  }

  .btn-primary,
  .btn-outline-primary {
    padding: 0.625rem 1.5rem;
    font-size: 0.95rem;
  }

  .cookie-banner .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
    margin-right: 0 !important;
  }

  .benefit-card {
    padding: 1.5rem;
  }

  .approach-card {
    padding: 1.5rem;
  }
}

.text-primary {
  color: var(--primary-green) !important;
}

.bg-light {
  background-color: var(--secondary-cream) !important;
}

.bg-dark {
  background-color: #1a1a1a !important;
}

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

.rounded {
  border-radius: 12px !important;
}
