:root {
  /* Color Palette */
  --primary-navy: #0F172A;
  /* Deep Navy - Trust, Authority */
  --secondary-blue: #1E293B;
  /* Lighter Navy - Sections */
  --accent-gold: #F59E0B;
  /* Honey Gold - Action, Highlights */
  --accent-gold-hover: #D97706;
  /* Darker Gold - Hover states */
  --text-main: #334155;
  /* Slate 700 - Main text, high contrast but softer than black */
  --text-light: #64748B;
  /* Slate 500 - Secondary text */
  --bg-white: #FFFFFF;
  --bg-light: #F8FAFC;
  /* Very light slate/gray - Section backgrounds */
  --bg-warm: #FFFBEB;
  /* Very light amber - Honey/Natural feel */
  --success-green: #10B981;
  /* Success indicators */
  --alert-red: #EF4444;
  /* Warnings */

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  /* Spacing */
  --container-width: 960px;
  --header-height: 70px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  /* Large base size for 45+ readability */
  line-height: 1.7;
  color: var(--text-main);
  background-color: var(--bg-light);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--primary-navy);
  text-decoration: none;
  transition: all 0.2s ease;
}

/* Typography Overrides */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-navy) !important;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.5rem;
}

strong {
  font-weight: 700;
  color: var(--primary-navy);
}

p {
  margin-bottom: 1.5rem;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 30px 0;
}

/* Header */
header {
  background: var(--bg-white);
  height: var(--header-height);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
}

header .container {
  display: flex;
  justify-content: center;
  /* Centered logo looks more premium/editorial */
  align-items: center;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(to bottom, var(--bg-white), var(--bg-light));
  text-align: center;
  padding-top: 20px;
  padding-bottom: 40px;
}

.hero-title {
  font-size: 2.75rem;
  max-width: 800px;
  margin: 0 auto 20px;
  color: var(--primary-navy);
}

.hero-title span {
  color: var(--accent-gold) !important;
  text-decoration: underline;
  text-decoration-color: rgba(245, 158, 11, 0.3);
  text-underline-offset: 4px;
  background: var(--accent-gold) !important;
  background-clip: text !important;
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--text-main);
}

/* Video Wrapper */
.img-video {
  position: relative;
  max-width: 800px;
  margin: 30px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 4px solid var(--bg-white);
}

.img-video-bg {
  width: 100%;
  display: block;
  height: 350px;
}

.img-vide-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  opacity: 0.9;
  transition: transform 0.2s ease;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.img-video:hover .img-vide-icon {
  transform: translate(-50%, -50%) scale(1.1);
}

/* CTA Buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(to bottom, var(--accent-gold), var(--accent-gold-hover));
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  padding: 18px 40px;
  border-radius: 50px;
  box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 20px 0;
  width: 100%;
  max-width: 600px;
  border-bottom: 4px solid #B45309;
  /* 3D effect */
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.4);
}

.cta-button:active {
  transform: translateY(1px);
  border-bottom-width: 2px;
  margin-top: 22px;
  /* Compensate for border change */
}

.cta-button i {
  font-size: 1.4rem;
}

/* Hero Note / Warning */
.hero-note {
  font-size: 0.95rem;
  color: var(--text-light);
  background: var(--bg-warm);
  border: 1px solid #FCD34D;
  padding: 15px 15px 15px 45px;
  /* Added left padding for icon */
  border-radius: 8px;
  max-width: 700px;
  margin: 20px auto 0;
  position: relative;
  /* For absolute positioning of icon */
  text-align: left;
  line-height: 1.5;
}

.hero-note::before {
  content: '\f071';
  /* FontAwesome warning icon */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--accent-gold);
  font-size: 1.2rem;
  position: absolute;
  left: 15px;
  top: 15px;
}

/* Announcement / Symptoms Section */
.announcement {
  background: var(--bg-white);
  border-top: 1px solid #E2E8F0;
}

.symptom-list {
  list-style: none;
  margin: 30px 0;
  display: grid;
  gap: 15px;
}

.symptom-list li {
  position: relative;
  padding-left: 35px;
  font-size: 1.1rem;
}

.symptom-list li::before {
  content: '\f00d';
  /* X icon */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--alert-red);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.2rem;
}

/* Topics / Toxin Section */
.topics {
  background: var(--bg-light);
}

/* Content Video Preview */
.content-video-preview {
  position: relative;
  max-width: 600px;
  margin: 0 auto 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.content-video-preview a {
  display: block;
  position: relative;
}

.preview-img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  opacity: 0.9;
  transition: transform 0.3s ease;
  pointer-events: none;
  animation: pulse 2s infinite;
}

.content-video-preview:hover .preview-img {
  transform: scale(1.02);
}

.content-video-preview:hover .play-overlay {
  transform: translate(-50%, -50%) scale(1.1);
}

.topics .note {
  background: #FEF2F2;
  /* Light red bg */
  border-left: 4px solid var(--alert-red);
  padding: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #7F1D1D;
}

/* Research / Honey Ritual Section */
.research {
  background: var(--bg-white);
}

.benefit-list {
  list-style: none;
  background: var(--bg-warm);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #FDE68A;
  margin: 30px 0;
}

.benefit-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #78350F;
  /* Dark amber text */
}

.benefit-list li:last-child {
  margin-bottom: 0;
}

.benefit-list li::before {
  content: '\f00c';
  /* Check icon */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--success-green);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.2rem;
}

/* Story Section */
.guides {
  background: var(--primary-navy);
  color: white;
  padding: 80px 0;
}

.guides h2 {
  color: white;
  text-align: center;
  margin-bottom: 40px;
}

.guides p {
  color: #E2E8F0;
  /* Light slate text */
  font-size: 1.1rem;
}

.guides strong {
  color: var(--accent-gold);
}

.guides .cta-button {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-bottom-color: #92400E;
}

/* Final Section */
.final-section {
  background: var(--bg-white);
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-light);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #E2E8F0;
}

.warning {
  color: var(--alert-red);
  font-weight: 600;
  margin: 20px 0;
}

.disclaimer-text {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 20px;
}

/* Footer */
.footer {
  background: var(--secondary-blue);
  color: #94A3B8;
  padding: 40px 0;
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #334155;
  padding-bottom: 20px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 600;
}

.footer-links a {
  color: #94A3B8;
  margin-left: 20px;
}

.footer-links a:hover {
  color: white;
}

.footer-copyright {
  text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-title {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin: 0 auto 0px;
    line-height: 1.5;
  }

  .cta-button {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
  }

  .footer-links a {
    margin: 0 10px;
  }
}