@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@300;400;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #2C3E50;
  --color-accent-green: #27AE60;
  --color-accent-yellow: #F39C12;
  --color-light: #ECF0F1;
  --color-white: #ffffff;
  --color-dark: #1a252f;
  --color-text-body: #3d4e5c;
  --color-text-muted: #6c7a89;
  --color-border: #d5dde3;
  --color-card-bg: #f7f9fa;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(44,62,80,0.09);
  --shadow-hover: 0 8px 36px rgba(44,62,80,0.16);
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-body);
  background: var(--color-white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }

p {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text-body);
  line-height: 1.75;
  margin-bottom: 1rem;
}

a {
  color: var(--color-accent-green);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.4rem;
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
}

.container-wide {
  width: 95%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad {
  padding: 90px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

.bg-light-section {
  background: var(--color-light);
}

.bg-primary-section {
  background: var(--color-primary);
  color: var(--color-white);
}

.bg-primary-section h1,
.bg-primary-section h2,
.bg-primary-section h3 {
  color: var(--color-white);
}

.bg-primary-section p {
  color: rgba(255,255,255,0.82);
}

.bg-dark-section {
  background: var(--color-dark);
  color: var(--color-white);
}

.text-accent-green {
  color: var(--color-accent-green);
}

.text-accent-yellow {
  color: var(--color-accent-yellow);
}

.label-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-green);
  background: rgba(39,174,96,0.1);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.label-tag-yellow {
  color: var(--color-accent-yellow);
  background: rgba(243,156,18,0.1);
}

.divider-line {
  width: 56px;
  height: 3px;
  background: var(--color-accent-green);
  border-radius: 2px;
  margin: 18px 0 24px 0;
}

.divider-line-center {
  margin: 18px auto 24px auto;
}

.section-heading-block {
  margin-bottom: 50px;
}

.section-heading-block.center {
  text-align: center;
}

.btn-primary-custom {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--color-white);
  background: var(--color-accent-green);
  padding: 13px 32px;
  border-radius: 30px;
  border: 2px solid var(--color-accent-green);
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.btn-primary-custom:hover {
  background: transparent;
  color: var(--color-accent-green);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39,174,96,0.25);
}

.btn-outline-custom {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  background: transparent;
  padding: 13px 32px;
  border-radius: 30px;
  border: 2px solid var(--color-primary);
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.btn-outline-custom:hover {
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-light-custom {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  background: var(--color-white);
  padding: 13px 32px;
  border-radius: 30px;
  border: 2px solid var(--color-white);
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.btn-light-custom:hover {
  background: transparent;
  color: var(--color-white);
  text-decoration: none;
  transform: translateY(-2px);
}

.navbar-custom {
  background: var(--color-white);
  box-shadow: 0 2px 16px rgba(44,62,80,0.08);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.navbar-custom .navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.65rem;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.navbar-custom .navbar-brand span {
  color: var(--color-accent-green);
}

.navbar-custom .nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  color: var(--color-text-body);
  padding: 8px 14px;
  transition: color var(--transition);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--color-accent-green);
}

.navbar-custom .navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none;
}

.navbar-custom .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(44,62,80,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a252f 0%, #2C3E50 60%, #2d4a3e 100%);
  padding: 80px 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44,62,80,0.35);
  z-index: 1;
}

.hero-section .hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  border-radius: 0;
  opacity: 0.45;
}

.hero-section .hero-content {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  color: var(--color-white);
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 1.4rem;
}

.hero-section p {
  color: rgba(255,255,255,0.88);
  font-size: 1.13rem;
  line-height: 1.8;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(39,174,96,0.18);
  border: 1px solid rgba(39,174,96,0.4);
  color: #7de8a8;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-top: 10px;
}

.two-col-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col-block.reverse {
  direction: rtl;
}

.two-col-block.reverse > * {
  direction: ltr;
}

.two-col-block .col-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.card-custom {
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 36px 30px;
  transition: box-shadow var(--transition), transform var(--transition);
  height: 100%;
  border: 1px solid var(--color-border);
}

.card-custom:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.card-custom .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(39,174,96,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.card-custom .card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-accent-green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-custom h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.card-custom p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.full-width-banner {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.full-width-banner .banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  z-index: 0;
}

.full-width-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(44,62,80,0.88) 0%, rgba(44,62,80,0.4) 100%);
  z-index: 1;
}

.full-width-banner .banner-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.full-width-banner .banner-content h2 {
  color: var(--color-white);
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.full-width-banner .banner-content p {
  color: rgba(255,255,255,0.82);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--color-primary);
  border-radius: 16px;
  overflow: hidden;
}

.stat-item {
  padding: 40px 30px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent-green);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--color-border);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent-green);
  border: 2px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-accent-green);
}

.timeline-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.glossary-item {
  background: var(--color-card-bg);
  border-radius: 10px;
  padding: 24px;
  border-left: 3px solid var(--color-accent-green);
}

.glossary-item h3 {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.glossary-item p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.info-table thead {
  background: var(--color-primary);
  color: var(--color-white);
}

.info-table thead th {
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.04em;
  color: var(--color-white);
}

.info-table tbody tr {
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}

.info-table tbody tr:last-child {
  border-bottom: none;
}

.info-table tbody tr:hover {
  background: rgba(39,174,96,0.05);
}

.info-table tbody td {
  padding: 15px 20px;
  font-size: 0.92rem;
  color: var(--color-text-body);
}

.info-table tbody tr:nth-child(even) {
  background: var(--color-card-bg);
}

.info-table tbody tr:nth-child(even):hover {
  background: rgba(39,174,96,0.05);
}

.highlight-box {
  background: linear-gradient(135deg, rgba(39,174,96,0.08), rgba(243,156,18,0.05));
  border: 1px solid rgba(39,174,96,0.2);
  border-radius: 14px;
  padding: 36px 40px;
}

.info-disclaimer {
  background: rgba(243,156,18,0.08);
  border: 1px solid rgba(243,156,18,0.3);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 32px 0;
}

.info-disclaimer p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

.info-disclaimer .disclaimer-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
}

.card-img-top-custom {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
}

.card-with-img {
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  border: 1px solid var(--color-border);
}

.card-with-img:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.card-with-img .card-body-custom {
  padding: 28px 26px;
}

.card-with-img .card-body-custom h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.card-with-img .card-body-custom p {
  font-size: 0.91rem;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.read-more-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent-green);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}

.read-more-link:hover {
  color: var(--color-primary);
  gap: 10px;
  text-decoration: none;
}

.read-more-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.myths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.myth-card {
  border-radius: 12px;
  padding: 26px 28px;
}

.myth-card.myth {
  background: rgba(231,76,60,0.06);
  border-left: 4px solid #e74c3c;
}

.myth-card.fact {
  background: rgba(39,174,96,0.07);
  border-left: 4px solid var(--color-accent-green);
}

.myth-card .myth-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.myth-card.myth .myth-label {
  color: #e74c3c;
}

.myth-card.fact .myth-label {
  color: var(--color-accent-green);
}

.myth-card h3 {
  font-size: 0.98rem;
  margin-bottom: 10px;
}

.myth-card p {
  font-size: 0.88rem;
  margin-bottom: 0;
  color: var(--color-text-muted);
}

.local-herbs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 10px;
}

.herb-card {
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 30px 24px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.herb-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.herb-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(39,174,96,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.herb-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--color-accent-green);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.herb-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.herb-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.cta-band {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a3a2a 100%);
  border-radius: 20px;
  padding: 60px 50px;
  text-align: center;
}

.cta-band h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-band p {
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 28px;
}

.footer-custom {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0 0;
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--color-white);
  margin-bottom: 14px;
  display: block;
}

.footer-brand span {
  color: var(--color-accent-green);
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-accent-green);
  text-decoration: none;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-accent-green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0;
  line-height: 1.6;
}

.footer-edu-note {
  background: rgba(39,174,96,0.1);
  border-radius: 8px;
  padding: 14px 18px;
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  color: var(--color-white);
  z-index: 9999;
  padding: 20px 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.82);
  flex: 1;
  min-width: 280px;
  line-height: 1.6;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.btn-cookie {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-cookie-accept {
  background: var(--color-accent-green);
  color: var(--color-white);
}

.btn-cookie-accept:hover {
  background: #1e8449;
  color: var(--color-white);
}

.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-cookie-decline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
}

.btn-cookie-learn {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
}

.btn-cookie-learn:hover {
  color: var(--color-white);
  text-decoration: none;
  border-color: rgba(255,255,255,0.5);
}

.page-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #34495e 100%);
  padding: 80px 0 70px;
  text-align: center;
}

.page-hero h1 {
  color: var(--color-white);
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--color-white);
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--color-card-bg);
}

.faq-question h3 {
  font-size: 0.98rem;
  margin: 0;
  font-weight: 600;
  flex: 1;
  padding-right: 20px;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(39,174,96,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-accent-green);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--transition);
}

.faq-item.open .faq-toggle {
  background: var(--color-accent-green);
  transform: rotate(45deg);
}

.faq-item.open .faq-toggle svg {
  stroke: var(--color-white);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  background: var(--color-white);
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.contact-form-wrap {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 50px 44px;
  border: 1px solid var(--color-border);
}

.form-group-custom {
  margin-bottom: 24px;
}

.form-group-custom label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.form-group-custom input,
.form-group-custom textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--color-text-body);
  background: var(--color-card-bg);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}

.form-group-custom input:focus,
.form-group-custom textarea:focus {
  border-color: var(--color-accent-green);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(39,174,96,0.12);
}

.form-disclaimer {
  background: var(--color-card-bg);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  border-left: 3px solid var(--color-accent-yellow);
}

.contact-info-card {
  background: var(--color-primary);
  border-radius: 16px;
  padding: 40px 36px;
  height: 100%;
}

.contact-info-card h3 {
  color: var(--color-white);
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent-green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail .detail-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-green);
  display: block;
  margin-bottom: 4px;
}

.contact-detail .detail-value {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}

.hours-grid {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.88rem;
}

.hours-row .day {
  color: rgba(255,255,255,0.6);
}

.hours-row .time {
  color: var(--color-white);
  font-weight: 600;
  font-family: var(--font-heading);
}

.policy-content {
  max-width: 820px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

.policy-content h3 {
  font-size: 1.1rem;
  margin-top: 28px;
  margin-bottom: 12px;
}

.policy-content p,
.policy-content li {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.thank-you-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: rgba(39,174,96,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.thank-you-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--color-accent-green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumb-custom a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.breadcrumb-custom a:hover {
  color: var(--color-accent-green);
  text-decoration: none;
}

.breadcrumb-custom .sep {
  opacity: 0.4;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--color-white);
  border-radius: 14px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(39,174,96,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-accent-green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.scroll-animate {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.scroll-animate-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.scroll-animate-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.for-mens-topic-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}

@media (max-width: 1199px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .hero-section h1 { font-size: 2.5rem; }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 991px) {
  .section-pad { padding: 70px 0; }
  .two-col-block { grid-template-columns: 1fr; gap: 36px; }
  .two-col-block.reverse { direction: ltr; }
  .two-col-block .col-img img { height: 280px; }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .glossary-grid { grid-template-columns: 1fr; }
  .myths-grid { grid-template-columns: 1fr; }
  .local-herbs-grid { grid-template-columns: repeat(2, 1fr); }
  .full-width-banner { padding: 60px 0; min-height: auto; }
  .contact-info-card { margin-top: 32px; }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-section h1 { font-size: 2.1rem; }
}

@media (max-width: 767px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .hero-section { min-height: 75vh; padding: 60px 0; }
  .hero-section h1 { font-size: 1.85rem; }
  .section-pad { padding: 55px 0; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .card-grid-4 { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .local-herbs-grid { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
  .contact-form-wrap { padding: 30px 20px; }
  .page-hero { padding: 55px 0 45px; }
  .page-hero h1 { font-size: 1.9rem; }
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
  .two-col-block .col-img img { height: 220px; }
  .full-width-banner .banner-content h2 { font-size: 1.6rem; }
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(39,174,96,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.thankyou-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--color-accent-green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.thankyou-nav-cards {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.thankyou-nav-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  flex: 1;
  min-width: 200px;
  text-decoration: none;
  transition: box-shadow var(--transition), transform var(--transition);
}
.thankyou-nav-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  text-decoration: none;
}
.tnc-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(44,62,80,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tnc-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tnc-label {
  display: block;
  font-size: 0.72rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.tnc-title {
  display: block;
  font-size: 0.92rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 2px;
}

.faq-category { margin-bottom: 8px; }
.faq-accordion { border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  background: var(--color-white);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background var(--transition), color var(--transition);
}
.faq-question:hover {
  background: var(--color-light);
}
.faq-question[aria-expanded="true"] {
  background: var(--color-primary);
  color: var(--color-white);
}
.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 24px;
  overflow: hidden;
}
.faq-answer.show {
  padding: 20px 24px;
}
.faq-answer p {
  font-size: 0.94rem;
  margin-bottom: 0;
}

.herbs-timeline {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  padding-left: 32px;
}
.herbs-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(255,255,255,0.2);
}
.herb-timeline-item {
  position: relative;
  margin-bottom: 36px;
}
.herb-timeline-item:last-child { margin-bottom: 0; }
.herb-timeline-marker {
  position: absolute;
  left: -28px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-accent-yellow);
  border: 2px solid rgba(255,255,255,0.3);
}
.herb-timeline-content {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.herb-timeline-content h3 {
  color: var(--color-white);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.herb-timeline-content p {
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pillar-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.pillar-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(44,62,80,0.08);
  line-height: 1;
  margin-bottom: 12px;
}
.pillar-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.pillar-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container-wide { width: 100%; padding: 0 16px; }
  .card-custom { padding: 24px 20px; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat-item { border-right: none; }
  h1 { font-size: 1.7rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .thankyou-nav-cards { flex-direction: column; }
  .herbs-timeline { padding-left: 24px; }
}
