:root {
  --forest-green: #228B22;
  --forest-green-dark: #1a6b1a;
  --forest-green-light: #2ea82e;
  --text-dark: #2c2c2c;
  --text-muted: #5a5a5a;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
}

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

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

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

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

a:hover {
  color: var(--forest-green-dark);
  text-decoration: underline;
}

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

.header {
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header .navbar {
  padding: 1rem 0;
}

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

.header .navbar-brand:hover {
  color: var(--forest-green-dark);
  text-decoration: none;
}

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

.header .nav-link:hover {
  color: var(--forest-green);
}

.header .navbar-toggler {
  border-color: var(--forest-green);
}

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

main {
  padding-top: 80px;
}

.section {
  padding: 4rem 0;
}

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

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

.hero-section {
  background-color: var(--bg-light);
  padding: 5rem 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

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

.hero-section p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

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

.content-image {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-image:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

.two-col-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.two-col-layout .text-col {
  flex: 1;
  min-width: 280px;
}

.two-col-layout .image-col {
  flex: 1;
  min-width: 280px;
}

.two-col-layout.reverse {
  flex-direction: row-reverse;
}

.info-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
  color: var(--forest-green);
  margin-bottom: 0.75rem;
}

.ingredient-list {
  list-style: none;
  padding: 0;
}

.ingredient-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
}

.ingredient-list li:last-child {
  border-bottom: none;
}

.ingredient-icon {
  width: 24px;
  height: 24px;
  background-color: var(--forest-green);
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ingredient-icon::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--bg-white);
  border-radius: 50%;
}

.routine-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.routine-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.routine-card-body {
  padding: 1.25rem;
}

.routine-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

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

.faq-question {
  padding: 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

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

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1rem;
  flex: 1;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-green);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.25rem 1.25rem;
  max-height: 500px;
}

.contact-form {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.1);
}

.btn-primary-custom {
  background-color: var(--forest-green);
  color: var(--bg-white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: var(--forest-green-dark);
  transform: translateY(-2px);
}

.btn-link-custom {
  color: var(--forest-green);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.btn-link-custom:hover {
  color: var(--forest-green-dark);
  text-decoration: none;
}

.btn-link-custom::after {
  content: "→";
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn-link-custom:hover::after {
  transform: translateX(3px);
}

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

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.gallery-item-caption {
  padding: 1rem;
  background-color: var(--bg-white);
}

.gallery-item-caption p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.disclaimer-box {
  background-color: rgba(34, 139, 34, 0.08);
  border-left: 4px solid var(--forest-green);
  padding: 1.25rem;
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
}

.disclaimer-box h3 {
  color: var(--forest-green);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.disclaimer-box p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

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

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

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.footer {
  background-color: var(--text-dark);
  color: #b0b0b0;
  padding: 3rem 0 1.5rem;
}

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

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

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

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

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

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

.footer-disclaimer {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 1rem;
  z-index: 1001;
  display: none;
}

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

.cookie-banner p {
  color: #d0d0d0;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.cookie-banner .btn-accept {
  background-color: var(--forest-green);
  color: var(--bg-white);
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.cookie-banner .btn-accept:hover {
  background-color: var(--forest-green-light);
}

.page-header {
  background-color: var(--bg-light);
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.page-header h1 {
  margin-bottom: 0.5rem;
}

.page-header p {
  margin-bottom: 0;
}

.policy-content {
  padding: 2rem 0 4rem;
}

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

.policy-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

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

.policy-content li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

@media (max-width: 991px) {
  .hero-section {
    padding: 3rem 0;
    min-height: auto;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  h1 {
    font-size: 1.875rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 767px) {
  main {
    padding-top: 70px;
  }

  .hero-section h1 {
    font-size: 1.75rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  .two-col-layout {
    flex-direction: column;
  }

  .two-col-layout.reverse {
    flex-direction: column;
  }

  .two-col-layout .image-col {
    order: -1;
  }

  .section {
    padding: 2.5rem 0;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

@media (max-width: 575px) {
  .hero-section {
    padding: 2rem 0;
  }

  .hero-section h1 {
    font-size: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
