@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-champagne: #faf8f5;
  --bg-white: #ffffff;
  --bg-paper: #f4f0ea;
  --bg-dark: #1e2522;
  --text-charcoal: #2c3531;
  --text-muted: #5e6b66;
  
  /* Trust Premium Colors */
  --accent-forest: #0f4c3a;
  --accent-forest-dark: #072a20;
  --accent-forest-glow: rgba(15, 76, 58, 0.05);
  --accent-gold: #c5a059;
  --accent-gold-dark: #a9833f;
  --accent-gold-glow: rgba(197, 160, 89, 0.12);
  --border-light: #e6e0d5;
  --border-dark: #2c3531;

  --font-heading: 'Lora', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.25s ease;
  
  --shadow-sm: 0 2px 4px rgba(15, 76, 58, 0.02);
  --shadow-md: 0 10px 20px -5px rgba(15, 76, 58, 0.04);
  --shadow-lg: 0 20px 40px -10px rgba(15, 76, 58, 0.08);
}

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

html, body {
  overflow-x: hidden;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-champagne);
  color: var(--text-charcoal);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* Typography & Headings */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--accent-forest-dark);
  font-weight: 600;
  line-height: 1.25;
}

p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Beautiful Serif Logo Wordmark */
.brand-logo {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--accent-forest);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-logo .logo-leaf {
  color: var(--accent-gold);
  font-size: 1.2rem;
  display: inline-block;
  animation: floatLeaf 4s ease-in-out infinite;
}

@keyframes floatLeaf {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.brand-logo .logo-text {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-logo .logo-text span {
  font-weight: 300;
  color: var(--accent-gold-dark);
  letter-spacing: 0.04em;
}

.brand-logo .logo-geo {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--bg-white);
  background-color: var(--accent-gold);
  padding: 3px 8px;
  border-radius: 20px;
  margin-left: 2px;
  border: 1px solid var(--accent-gold-dark);
}

.title-xl {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.title-lg {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.subtitle {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--accent-gold-dark);
  margin-bottom: 0.8rem;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Preloader with Minimal Elegant Serif Text */
#preloader {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--bg-champagne);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.loader-circle {
  width: 45px;
  height: 45px;
  border: 3px solid var(--accent-gold-glow);
  border-radius: 50%;
  border-top-color: var(--accent-forest);
  animation: spin 0.9s infinite linear;
}

.loader-text {
  margin-top: 20px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent-forest);
  font-style: italic;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Affiliate Regulatory Banner */
.affiliate-banner {
  background-color: var(--accent-forest-dark);
  color: var(--bg-paper);
  text-align: center;
  padding: 8px 15px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  position: relative;
  z-index: 1001;
}

/* Header & Sticky Nav */
header {
  position: sticky;
  top: 0; width: 100%;
  padding: 24px 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-smooth);
}

header.scrolled {
  padding: 16px 0;
  box-shadow: var(--shadow-sm);
  border-bottom-color: rgba(197, 160, 89, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-charcoal);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background-color: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-fast);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--accent-forest);
}

.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid var(--accent-forest);
  transition: all var(--transition-fast);
  text-align: center;
}

.btn-solid {
  background-color: var(--accent-forest);
  color: var(--bg-white);
  border-color: var(--accent-forest);
  box-shadow: 0 4px 10px rgba(15, 76, 58, 0.1);
}

.btn-solid:hover {
  background-color: var(--accent-forest-dark);
  border-color: var(--accent-forest-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 76, 58, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-forest);
  border-color: var(--accent-forest);
}

.btn-outline:hover {
  background-color: var(--accent-forest-glow);
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-white);
  box-shadow: 0 4px 10px rgba(197, 160, 89, 0.15);
}

.btn-gold:hover {
  background-color: var(--accent-gold-dark);
  border-color: var(--accent-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197, 160, 89, 0.25);
}

/* Mobile Nav Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 2000;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--accent-forest);
  transition: all var(--transition-fast);
}

.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 80%; max-width: 360px; height: 100vh;
  background: var(--bg-white);
  box-shadow: -10px 0 40px rgba(15, 76, 58, 0.05);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px;
  transition: right var(--transition-smooth);
}

.mobile-nav.open { right: 0; }
.mobile-nav ul { list-style: none; }
.mobile-nav li { margin: 2rem 0; }
.mobile-nav a { font-family: var(--font-heading); font-size: 2rem; color: var(--accent-forest); font-style: italic; }
.mobile-nav a.active { color: var(--accent-gold-dark); }

.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Editorial Hero Section */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
  background: linear-gradient(180deg, #f4f0ea 0%, #faf8f5 100%);
  border-bottom: 1px solid var(--border-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  max-width: 620px;
}

.hero-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--text-muted);
}

.hero-img-wrapper {
  position: relative;
  padding: 10px;
}

.hero-img-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border: 1px solid var(--accent-gold);
  z-index: 1;
}

.hero-img {
  width: 100%;
  display: block;
  z-index: 2;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 10px solid var(--bg-white);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-forest);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.trust-badge span {
  width: 6px; height: 6px;
  background-color: var(--accent-gold);
  border-radius: 50%;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
  .hero-text { margin: 0 auto; }
  .hero-img-wrapper { max-width: 480px; margin: 0 auto; }
}

/* Grid Feature Layout (Magazine Style) */
.features {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.section-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 5rem;
}

.section-intro h2 {
  font-style: italic;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.feature-card {
  background: var(--bg-champagne);
  padding: 3.5rem 2rem;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  transition: all var(--transition-smooth);
  position: relative;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
  background-color: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background-color: var(--bg-white);
  border-color: var(--accent-gold);
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-icon {
  width: 50px; height: 50px;
  background: var(--bg-paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.feature-card:hover .feature-icon {
  background-color: var(--accent-forest);
  border-color: var(--accent-forest);
}

.feature-icon svg {
  width: 22px; height: 22px;
  fill: var(--accent-forest);
  transition: all var(--transition-fast);
}

.feature-card:hover .feature-icon svg {
  fill: var(--bg-white);
}

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

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Editorial Content Block */
.editorial {
  padding: 100px 0;
  background-color: var(--bg-paper);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.editorial-img-wrapper {
  position: relative;
  padding: 10px;
}

.editorial-img-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border: 1px solid var(--accent-gold);
  z-index: 1;
}

.editorial-img-wrapper img {
  width: 100%;
  display: block;
  box-shadow: var(--shadow-lg);
  border: 10px solid var(--bg-white);
  position: relative;
  z-index: 2;
}

.editorial-text h2 {
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.editorial-text p {
  margin-bottom: 1.5rem;
}

.checklist {
  list-style: none;
  margin: 2.5rem 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1.2rem;
  font-size: 1rem;
  font-weight: 500;
}

.checklist li svg {
  width: 18px; height: 18px;
  fill: var(--accent-gold-dark);
  flex-shrink: 0;
  margin-top: 3px;
}

@media (max-width: 900px) {
  .editorial-grid { grid-template-columns: 1fr; gap: 4rem; }
  .editorial-grid.reverse .editorial-text { order: 2; }
  .editorial-grid.reverse .editorial-img-wrapper { order: 1; }
}

/* Expert Review Page Specific Styles */
.review-header {
  text-align: center;
  padding: 120px 0 80px;
  background-color: var(--bg-paper);
  border-bottom: 1px solid var(--border-light);
}

.review-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-style: italic;
}

.review-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.rating-stars {
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 4px;
}

.article-body {
  max-width: 760px;
  margin: 80px auto;
  padding: 0 20px;
}

.article-body h2 {
  font-size: 1.85rem;
  margin: 3.5rem 0 1.2rem;
  font-style: italic;
}

.article-body h3 {
  font-size: 1.4rem;
  margin: 2.5rem 0 1rem;
  font-style: italic;
}

.article-body p {
  margin-bottom: 2rem;
  font-size: 1.08rem;
  line-height: 1.85;
}

.article-body ul {
  margin: 2rem 0;
  padding-left: 2rem;
}

.article-body li {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.pull-quote {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  line-height: 1.5;
  color: var(--accent-forest);
  font-style: italic;
  border-left: 3px solid var(--accent-gold);
  padding-left: 2.2rem;
  margin: 4rem 0;
}

/* Editorial Pros and Cons Grid */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin: 3.5rem 0;
}

.pro-card {
  background-color: var(--bg-white);
  padding: 2.5rem;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--accent-forest);
}

.con-card {
  background-color: var(--bg-white);
  padding: 2.5rem;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  border-top: 3px solid #b24d3d;
}

@media (max-width: 768px) {
  .pros-cons-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Product & Redirection Page Layout */
.product-showcase {
  padding: 100px 0;
  background-color: var(--bg-champagne);
}

.product-showcase .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

@media (min-width: 901px) {
  .gallery-container {
    position: sticky;
    top: 130px;
  }
}

.gallery-main {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}

.gallery-main::before {
  content: '';
  position: absolute;
  top: 10px; left: 10px; width: calc(100% - 20px); height: calc(100% - 20px);
  border: 1px solid var(--accent-gold);
  pointer-events: none;
}

.gallery-main img {
  width: 100%;
  display: block;
}

.product-details {
  padding-top: 1rem;
}

.product-details h1 {
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
  font-style: italic;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
}

.product-rating span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.price-card {
  background: var(--accent-forest);
  color: var(--bg-champagne);
  padding: 2.5rem;
  border-radius: 4px;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--accent-gold);
}

.price-card .price-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  display: block;
}

.price-card .price-amount {
  font-size: 2.8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.price-card .price-amount span {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--accent-gold);
}

.price-card .price-meta {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.85;
}

.spec-list {
  list-style: none;
  margin: 3.5rem 0;
  border-top: 1px solid var(--border-light);
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.98rem;
}

.spec-list span:first-child {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  color: var(--accent-forest);
}

.spec-list span:last-child {
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 900px) {
  .product-showcase .container { grid-template-columns: 1fr; gap: 4rem; }
}

/* Comparison Matrix Section */
.comparison-section {
  padding: 100px 0;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-light);
}

.comparison-wrapper {
  margin-top: 4rem;
  overflow-x: auto;
  box-shadow: var(--shadow-md);
  border-radius: 4px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
}

.comparison-table th, .comparison-table td {
  padding: 22px 28px;
  border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  background-color: var(--bg-paper);
  color: var(--accent-forest-dark);
}

.comparison-table th.highlight-column, .comparison-table td.highlight-column {
  background-color: var(--accent-forest-glow);
  border-left: 2px solid rgba(197, 160, 89, 0.3);
  border-right: 2px solid rgba(197, 160, 89, 0.3);
}

.comparison-table tr:hover td {
  background-color: var(--bg-champagne);
}

.comparison-table tr:hover td.highlight-column {
  background-color: rgba(15, 76, 58, 0.07);
}

.comparison-table svg {
  width: 18px; height: 18px;
  vertical-align: middle;
  margin-right: 8px;
}

.comparison-table svg.check { fill: var(--accent-forest); }
.comparison-table svg.cross { fill: #b24d3d; }

/* Interactive FAQ Section */
.faq-section {
  padding: 100px 0;
  background-color: var(--bg-champagne);
  border-top: 1px solid var(--border-light);
}

.faq-list {
  max-width: 800px;
  margin: 4rem auto 0;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  margin-bottom: 1.5rem;
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.faq-btn {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 22px 28px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--accent-forest-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  width: 20px; height: 20px;
  fill: var(--accent-gold);
  transition: transform var(--transition-fast);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 28px;
}

.faq-content p {
  padding-bottom: 22px;
  font-size: 1rem;
  line-height: 1.75;
}

.faq-item.active {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  fill: var(--accent-forest);
}

.faq-item.active .faq-content {
  max-height: 500px;
  padding: 0 28px;
}

/* Contact Page Styles */
.contact-section {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  font-style: italic;
  margin-bottom: 1.2rem;
}

.contact-card {
  background: var(--bg-champagne);
  border: 1px solid var(--border-light);
  padding: 2.2rem;
  border-radius: 4px;
  margin-bottom: 2rem;
}

.contact-card h4 {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: var(--accent-gold-dark);
  margin-bottom: 1rem;
}

.contact-form-container {
  background: var(--bg-champagne);
  border: 1px solid var(--border-light);
  padding: 4rem 3.5rem;
  border-radius: 4px;
}

.contact-form-container h2 {
  font-style: italic;
  margin-bottom: 1rem;
}

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

.form-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-forest-dark);
  margin-bottom: 0.6rem;
}

.form-input {
  width: 100%;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 14px 18px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--text-charcoal);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px var(--accent-gold-glow);
}

textarea.form-input {
  min-height: 140px;
  resize: vertical;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
  .contact-form-container { padding: 3rem 2rem; }
}

/* Legal Document Styles */
.legal-page {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.legal-content .last-updated {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1.5rem;
  margin-bottom: 3.5rem;
}

.legal-content h2 {
  font-size: 1.6rem;
  margin: 3rem 0 1rem;
  font-style: italic;
}

.legal-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.legal-content ul, .legal-content ol {
  margin: 1.8rem 0;
  padding-left: 2.2rem;
}

.legal-content li {
  margin-bottom: 0.8rem;
  font-size: 1.02rem;
  color: var(--text-muted);
}

.legal-content strong {
  color: var(--accent-forest-dark);
}

/* Footer Section */
footer {
  background-color: var(--bg-dark);
  color: var(--bg-champagne);
  padding: 80px 0 40px;
  border-top: 2px solid var(--accent-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  border-bottom: 1px solid rgba(230, 224, 213, 0.05);
  padding-bottom: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo .logo-leaf {
  color: var(--accent-gold);
}

.footer-logo .logo-text span {
  font-weight: 300;
  color: var(--accent-gold);
}

.footer-logo .logo-geo {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--bg-dark);
  background-color: var(--accent-gold);
  padding: 2px 6px;
  border-radius: 12px;
  border: 1px solid var(--accent-gold-dark);
}

.footer-col p {
  color: #adb5b2;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 1.8rem;
}

.footer-col a {
  color: #adb5b2;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
  display: inline-block;
  width: fit-content;
}

.footer-col a:hover {
  color: var(--bg-white);
  transform: translateX(3px);
}

.regulatory-disclaimer {
  padding: 40px 0 20px;
  border-bottom: 1px solid rgba(230, 224, 213, 0.05);
}

.regulatory-disclaimer p {
  font-size: 0.76rem;
  line-height: 1.7;
  color: #8c9793;
}

.regulatory-disclaimer p strong {
  color: var(--bg-white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 0.82rem;
}

.footer-bottom p {
  color: #8c9793;
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 1.2rem; }
}

/* Beautiful PECR Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 30px; left: 30px;
  max-width: 440px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--accent-forest);
  padding: 2.2rem;
  border-radius: 4px;
  box-shadow: 0 15px 35px rgba(15, 76, 58, 0.15);
  z-index: 9999;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
  transform: translateY(calc(100% + 50px));
  opacity: 0;
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
  font-style: italic;
}

.cookie-banner p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  color: var(--text-muted);
}

.cookie-banner p a {
  color: var(--accent-gold-dark);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions .btn {
  flex: 1;
  padding: 10px 0;
  font-size: 0.78rem;
}

@media (max-width: 480px) {
  .cookie-banner {
    left: 15px; right: 15px; bottom: 15px;
    max-width: none;
    padding: 1.8rem;
  }
}
