@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&display=swap');

:root {
  --color-primary: #D9E8D0;
  --color-forest: #5B8C5A;
  --color-mint: #B6D7A8;
  --color-olive: #A6CD8D;
  --color-dark: #2c3e50;
  --color-light: #ecf0f1;
  --color-white: #ffffff;
}

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

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--color-dark);
  background-color: var(--color-white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-dark);
}

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

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}

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

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

header {
  position: sticky;
  top: 0;
  background-color: var(--color-white);
  border-bottom: 1px solid #e0e0e0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-forest) !important;
}

.navbar-brand:hover {
  color: var(--color-olive) !important;
}

.nav-link {
  color: var(--color-dark) !important;
  font-weight: 600;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

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

.hero-section {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(91, 140, 90, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.hero-content h1 {
  color: var(--color-white);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  margin-bottom: 1rem;
}

.hero-content p {
  color: var(--color-white);
  font-size: 1.3rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

section {
  padding: 4rem 0;
}

.section-intro {
  background-color: var(--color-primary);
}

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

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

.section-balance {
  background-color: linear-gradient(135deg, var(--color-primary) 0%, var(--color-mint) 100%);
  background-image: linear-gradient(135deg, var(--color-primary) 0%, var(--color-mint) 100%);
}

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

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

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

.section-cta {
  background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-olive) 100%);
  color: var(--color-white);
  text-align: center;
  padding: 5rem 2rem;
}

.section-cta h2 {
  color: var(--color-white);
  margin-bottom: 2rem;
}

.img-container {
  max-width: 500px;
  margin: 0 auto;
}

.img-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  background-color: var(--color-white);
}

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

.card-title {
  color: var(--color-forest);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.card-body {
  padding: 1.5rem;
}

.btn {
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--color-forest);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-olive);
  color: var(--color-white);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-forest);
}

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

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

.blog-card-body {
  padding: 1.5rem;
  flex-grow: 1;
}

.blog-card h3 {
  margin-top: 0;
  color: var(--color-forest);
}

.blog-meta {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.icon-box {
  text-align: center;
  padding: 1.5rem;
}

.icon-box::before {
  content: '●';
  display: block;
  font-size: 2.5rem;
  color: var(--color-forest);
  margin-bottom: 1rem;
}

.icon-box h4 {
  color: var(--color-forest);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.category-box {
  background-color: var(--color-primary);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--color-dark);
  display: block;
}

.category-box:hover {
  background-color: var(--color-mint);
  color: var(--color-dark);
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.category-box h3 {
  margin-top: 0;
  color: var(--color-forest);
}

.accordion-button {
  background-color: var(--color-white);
  color: var(--color-dark);
  font-weight: 600;
  border: 1px solid #ddd;
  padding: 1.2rem;
}

.accordion-button:not(.collapsed) {
  background-color: var(--color-mint);
  color: var(--color-dark);
  box-shadow: none;
  border-color: var(--color-mint);
}

.accordion-button:focus {
  border-color: var(--color-forest);
  box-shadow: 0 0 0 0.25rem rgba(91, 140, 90, 0.25);
}

.accordion-body {
  padding: 1.5rem;
  background-color: var(--color-white);
  border-top: 1px solid #ddd;
}

footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-section h5 {
  color: var(--color-olive);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-section p {
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-section a {
  color: var(--color-mint);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--color-olive);
}

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

.disclaimer-banner {
  background-color: var(--color-primary);
  border-left: 4px solid var(--color-forest);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-banner p {
  margin: 0;
  font-weight: 600;
  color: var(--color-forest);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 999;
  display: none;
}

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
}

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

.cookie-buttons button {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-buttons .btn-accept {
  background-color: var(--color-forest);
  color: var(--color-white);
}

.cookie-buttons .btn-accept:hover {
  background-color: var(--color-olive);
}

.cookie-buttons .btn-reject {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.cookie-buttons .btn-reject:hover {
  background-color: rgba(255,255,255,0.1);
}

.cookie-buttons .btn-policy {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  text-decoration: none;
  display: inline-block;
}

.cookie-buttons .btn-policy:hover {
  background-color: rgba(255,255,255,0.1);
}

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

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

.form-control {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.8rem 1rem;
  font-family: 'Open Sans', sans-serif;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-forest);
  box-shadow: 0 0 0 0.2rem rgba(91, 140, 90, 0.15);
  outline: none;
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.form-disclaimer {
  background-color: var(--color-primary);
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--color-forest);
}

.form-disclaimer p {
  margin: 0;
  color: var(--color-dark);
  font-weight: 600;
}

.breadcrumb {
  background-color: transparent;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.breadcrumb-item {
  color: var(--color-dark);
}

.breadcrumb-item.active {
  color: var(--color-forest);
  font-weight: 600;
}

.breadcrumb-item a {
  color: var(--color-forest);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--color-olive);
}

.article-content {
  line-height: 1.8;
  font-size: 1.05rem;
}

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

.article-content h3 {
  margin-top: 1.5rem;
}

.article-content ul, .article-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.article-content li {
  margin-bottom: 0.8rem;
}

.article-content strong {
  color: var(--color-forest);
}

.table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table thead {
  background-color: var(--color-primary);
}

.table th {
  color: var(--color-dark);
  font-weight: 700;
  padding: 1rem;
  text-align: left;
  border: 1px solid #ddd;
}

.table td {
  padding: 1rem;
  border: 1px solid #ddd;
}

.table tbody tr:nth-child(even) {
  background-color: rgba(217, 232, 208, 0.3);
}

.table tbody tr:hover {
  background-color: rgba(217, 232, 208, 0.6);
}

.media-list {
  list-style: none;
}

.media-item {
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
  display: flex;
  gap: 1.5rem;
}

.media-item:last-child {
  border-bottom: none;
}

.media-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-forest);
}

.media-body h4 {
  margin-top: 0;
  color: var(--color-forest);
}

.two-column-section {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.two-column-text {
  flex: 1;
}

.two-column-image {
  flex: 1;
}

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .hero-section {
    height: 350px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  section {
    padding: 2rem 0;
  }

  .two-column-section {
    flex-direction: column;
    gap: 2rem;
  }

  .cookie-banner.show {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-buttons button,
  .cookie-buttons .btn-policy {
    width: 100%;
  }

  .navbar {
    padding: 0.75rem 0;
  }

  .navbar-brand {
    font-size: 1.4rem;
  }

  .nav-link {
    margin: 0.25rem 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1rem;
  }

  .hero-section {
    height: 250px;
  }

  .hero-content h1 {
    font-size: 1.3rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  section {
    padding: 1.5rem 0;
  }

  .icon-box::before {
    font-size: 2rem;
  }

  p {
    font-size: 0.95rem;
  }
}
