/* ===================================
   PLUSH HORIZON - NATURE ORGANIC STYLE
   Complete CSS Stylesheet
   =================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #2C3E2A;
  background-color: #F8F6F1;
  overflow-x: hidden;
}

/* Nature Organic Color Palette */
:root {
  --primary: #4A7C59;
  --secondary: #8B9D77;
  --accent: #D4A574;
  --dark: #2C3E2A;
  --light: #F8F6F1;
  --cream: #EDE8DF;
  --sage: #A8B89F;
  --terracotta: #B8825D;
  --forest: #3A5F47;
  --white: #FFFFFF;
  --shadow: rgba(44, 62, 42, 0.1);
}

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

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

p {
  margin-bottom: 16px;
  color: var(--dark);
}

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

a:hover {
  color: var(--forest);
}

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

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Header & Navigation */
header {
  background-color: var(--white);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 8px var(--shadow);
  border-bottom: 3px solid var(--sage);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-menu li a {
  color: var(--dark);
  font-weight: 500;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 24px;
  transition: all 0.3s ease;
  display: block;
}

.nav-menu li a:hover {
  background-color: var(--cream);
  color: var(--primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px var(--shadow);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: var(--forest);
  transform: scale(1.05);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--white);
  z-index: 1001;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px var(--shadow);
  transition: right 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--terracotta);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: var(--dark);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  color: var(--dark);
  font-size: 18px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background-color: var(--cream);
  border-left-color: var(--primary);
  padding-left: 24px;
}

/* Buttons - Organic Style */
.cta-button,
.cta-primary,
.cta-button-large {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(74, 124, 89, 0.2);
  text-align: center;
}

.cta-button:hover,
.cta-primary:hover,
.cta-button-large:hover {
  background-color: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(74, 124, 89, 0.3);
  color: var(--white);
}

.cta-secondary,
.cta-button-outline {
  display: inline-block;
  padding: 14px 32px;
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.cta-secondary:hover,
.cta-button-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

.cta-button-large {
  padding: 18px 48px;
  font-size: 18px;
}

/* Hero Section - Organic */
.hero {
  background: linear-gradient(135deg, var(--sage) 0%, var(--cream) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--primary);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background-color: var(--accent);
  opacity: 0.1;
  border-radius: 50%;
}

.hero h1 {
  font-size: 56px;
  color: var(--dark);
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}

.hero .subheadline {
  font-size: 20px;
  color: var(--forest);
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-badge {
  display: inline-block;
  background-color: var(--white);
  padding: 12px 24px;
  border-radius: 24px;
  color: var(--primary);
  font-weight: 600;
  box-shadow: 0 4px 12px var(--shadow);
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--sage) 100%);
  padding: 60px 20px 40px;
  text-align: center;
  border-bottom: 3px solid var(--primary);
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--forest);
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--primary);
}

/* Sections */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Featured Articles */
.featured-articles {
  padding: 60px 20px;
  background-color: var(--white);
}

.featured-articles h2 {
  text-align: center;
  margin-bottom: 48px;
  color: var(--dark);
}

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.featured-main {
  flex: 1 1 100%;
  background-color: var(--cream);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.featured-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(74, 124, 89, 0.15);
}

.category {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.featured-main h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--dark);
}

.meta {
  display: flex;
  gap: 16px;
  color: var(--forest);
  font-size: 14px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.article-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: var(--white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  border: 2px solid var(--cream);
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(74, 124, 89, 0.15);
  border-color: var(--primary);
}

/* Services Grid */
.services-overview {
  padding: 60px 20px;
  background-color: var(--cream);
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 48px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
  background-color: var(--white);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 16px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  border: 3px solid var(--sage);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(74, 124, 89, 0.2);
  border-color: var(--primary);
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

.price {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--terracotta);
  margin: 24px 0;
}

/* Stats Counter */
.stats-counter {
  padding: 60px 20px;
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
}

.stats-counter h2 {
  color: var(--white);
  margin-bottom: 48px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.stat-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 16px;
  color: var(--cream);
}

/* Testimonials */
.testimonials {
  padding: 60px 20px;
  background-color: var(--white);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: var(--cream);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px var(--shadow);
  position: relative;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary);
}

.testimonial-card p {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--dark);
  line-height: 1.7;
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.client-info strong {
  color: var(--dark);
  font-size: 16px;
}

.client-info span {
  color: var(--forest);
  font-size: 14px;
}

/* CTA Banner */
.cta-banner {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--forest) 100%);
  color: var(--white);
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 42px;
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--cream);
  font-size: 20px;
  margin-bottom: 32px;
}

.features-list {
  max-width: 600px;
  margin: 0 auto 32px;
  text-align: left;
}

.features-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: var(--white);
  font-size: 18px;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 20px;
}

.pricing-highlight {
  font-size: 36px;
  font-weight: 700;
  margin: 32px 0;
  color: var(--accent);
}

.guarantee-badge {
  display: inline-block;
  background-color: var(--white);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 20px;
  margin-top: 16px;
  font-weight: 600;
}

/* News Content */
.news-content {
  padding: 40px 20px;
}

.content-layout {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.main-content {
  flex: 1 1 65%;
  min-width: 300px;
}

.sidebar {
  flex: 1 1 30%;
  min-width: 280px;
}

.featured-news {
  background-color: var(--cream);
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 32px;
  border-left: 6px solid var(--primary);
}

.featured-news h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
  color: var(--forest);
  font-size: 14px;
  flex-wrap: wrap;
}

.article-meta img {
  width: 20px;
  height: 20px;
}

.news-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.news-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: var(--white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  border: 2px solid var(--cream);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(74, 124, 89, 0.15);
}

.news-card.trending {
  border-color: var(--terracotta);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--terracotta);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

/* Sidebar Widgets */
.widget {
  background-color: var(--white);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px var(--shadow);
  border: 2px solid var(--cream);
}

.widget h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 20px;
}

.topics-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topic-tag {
  display: inline-block;
  background-color: var(--cream);
  color: var(--dark);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.topic-tag:hover {
  background-color: var(--primary);
  color: var(--white);
}

.popular-articles li {
  padding: 12px 0;
  border-bottom: 1px solid var(--cream);
}

.popular-articles li:last-child {
  border-bottom: none;
}

.popular-articles a {
  color: var(--dark);
  font-size: 15px;
}

.popular-articles a:hover {
  color: var(--primary);
}

.cta-widget {
  background: linear-gradient(135deg, var(--primary) 0%, var(--forest) 100%);
  color: var(--white);
  text-align: center;
}

.cta-widget h3 {
  color: var(--white);
}

.cta-widget p {
  color: var(--cream);
  margin-bottom: 16px;
}

/* Filter Navigation */
.filter-navigation {
  padding: 24px 20px;
  background-color: var(--white);
  border-bottom: 2px solid var(--cream);
}

.filter-navigation .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  background-color: var(--cream);
  color: var(--dark);
  border: 2px solid transparent;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.sort-options select {
  padding: 10px 16px;
  background-color: var(--cream);
  border: 2px solid var(--sage);
  border-radius: 24px;
  color: var(--dark);
  font-size: 14px;
  cursor: pointer;
}

/* Analysis Page */
.featured-analysis {
  background-color: var(--cream);
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 40px;
  border-left: 6px solid var(--primary);
}

.premium-badge {
  display: inline-block;
  background-color: var(--terracotta);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.author-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.excerpt {
  font-size: 18px;
  color: var(--forest);
  margin-bottom: 24px;
}

.key-insights {
  background-color: var(--white);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.key-insights li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: var(--dark);
}

.key-insights li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.analysis-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.analysis-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
  background-color: var(--white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  border: 2px solid var(--cream);
}

.analysis-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(74, 124, 89, 0.15);
}

.analysis-card.premium {
  border-color: var(--terracotta);
  opacity: 0.8;
}

.premium-lock {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--terracotta);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
}

.premium-upsell {
  background: linear-gradient(135deg, var(--primary) 0%, var(--forest) 100%);
  color: var(--white);
  padding: 48px;
  border-radius: 16px;
  text-align: center;
  margin-top: 48px;
}

.premium-upsell h2 {
  color: var(--white);
  margin-bottom: 24px;
}

.premium-upsell ul {
  max-width: 500px;
  margin: 0 auto 32px;
  text-align: left;
}

.premium-upsell li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: var(--white);
}

.premium-upsell li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Reports Page */
.reports-categories {
  padding: 60px 20px;
  background-color: var(--white);
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.category-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background-color: var(--cream);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 2px 12px var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  margin-bottom: 20px;
  border: 3px solid var(--sage);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(74, 124, 89, 0.15);
  border-color: var(--primary);
}

.category-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}

.latest-report {
  padding: 60px 20px;
  background-color: var(--cream);
}

.report-showcase {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.report-cover {
  flex: 0 0 300px;
}

.cover-placeholder {
  width: 300px;
  height: 400px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--forest) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 8px 24px var(--shadow);
}

.report-details {
  flex: 1 1 500px;
}

.publish-date {
  color: var(--forest);
  font-size: 14px;
  margin-bottom: 16px;
}

.description {
  font-size: 18px;
  margin-bottom: 24px;
}

.report-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  color: var(--forest);
  flex-wrap: wrap;
}

.actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.reports-library {
  padding: 60px 20px;
  background-color: var(--white);
}

.reports-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.report-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: var(--cream);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  border: 2px solid var(--sage);
}

.report-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(74, 124, 89, 0.15);
}

.report-card.bestseller {
  border-color: var(--terracotta);
}

.report-thumbnail {
  width: 100%;
  height: 200px;
  background-color: var(--sage);
  border-radius: 8px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.subscription-offer {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sage) 100%);
  text-align: center;
}

/* Webinars Page */
.featured-webinar {
  padding: 60px 20px;
  background-color: var(--white);
}

.webinar-banner {
  display: flex;
  gap: 40px;
  align-items: center;
  background-color: var(--cream);
  padding: 40px;
  border-radius: 16px;
  flex-wrap: wrap;
}

.webinar-visual {
  flex: 0 0 300px;
  height: 200px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--forest) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
}

.webinar-info {
  flex: 1 1 500px;
}

.datetime {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--primary);
  font-weight: 600;
}

.datetime img {
  width: 20px;
  height: 20px;
}

.speaker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.speaker img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.topics {
  background-color: var(--white);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.topics li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--dark);
}

.topics li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 20px;
}

.availability {
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 16px;
}

.countdown {
  display: inline-block;
  background-color: var(--terracotta);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 24px;
  font-weight: 600;
  margin-top: 16px;
}

.upcoming-webinars {
  padding: 60px 20px;
  background-color: var(--cream);
}

.webinars-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.webinar-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
  background-color: var(--white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  border: 2px solid var(--sage);
}

.webinar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(74, 124, 89, 0.15);
}

.speaker-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0;
  font-size: 14px;
  color: var(--forest);
}

.seats {
  display: block;
  color: var(--primary);
  font-weight: 600;
  margin: 16px 0;
}

.webinar-benefits {
  padding: 60px 20px;
  background-color: var(--white);
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.benefit-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  text-align: center;
  padding: 32px 24px;
  background-color: var(--cream);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card:hover {
  transform: translateY(-4px);
}

.benefit-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}

.pricing-packages {
  padding: 60px 20px;
  background-color: var(--cream);
}

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.package-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 350px;
  background-color: var(--white);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 16px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  border: 3px solid var(--sage);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(74, 124, 89, 0.2);
}

.package-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.price-big {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  margin: 24px 0;
}

.package-card ul {
  text-align: left;
  margin-bottom: 24px;
}

.package-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--cream);
}

/* Subscription Page */
.pricing-comparison {
  padding: 60px 20px;
  background-color: var(--white);
}

.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.pricing-tier {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
  max-width: 380px;
  background-color: var(--cream);
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  border: 3px solid var(--sage);
}

.pricing-tier:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(74, 124, 89, 0.2);
}

.pricing-tier.featured {
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  border-color: var(--primary);
  border-width: 4px;
}

.pricing-tier h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--primary);
  text-align: center;
}

.pricing-tier .price {
  text-align: center;
  font-size: 48px;
  color: var(--terracotta);
}

.pricing-tier .price span {
  font-size: 18px;
  color: var(--forest);
}

.pricing-tier .features {
  margin: 32px 0;
}

.pricing-tier .features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--sage);
  color: var(--dark);
}

.guarantee {
  display: block;
  text-align: center;
  color: var(--primary);
  font-size: 14px;
  margin-top: 12px;
  font-weight: 600;
}

.premium-features {
  padding: 60px 20px;
  background-color: var(--cream);
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.feature-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: var(--white);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 12px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  border: 2px solid var(--sage);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(74, 124, 89, 0.15);
  border-color: var(--primary);
}

.feature-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}

.services-comparison {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-item {
  background-color: var(--cream);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  border-left: 4px solid var(--primary);
}

.individual-price {
  color: var(--forest);
  font-size: 14px;
  font-style: italic;
}

.included-badge {
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
}

.trust-indicators {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.trust-indicators span {
  color: var(--forest);
  font-weight: 600;
}

.trial-badge {
  display: inline-block;
  background-color: var(--terracotta);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  margin-top: 16px;
}

.rating {
  color: var(--accent);
  font-size: 20px;
  margin-top: 12px;
}

.duration {
  color: var(--forest);
  font-size: 14px;
  font-style: italic;
}

.cta-final {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--forest) 100%);
  color: var(--white);
  text-align: center;
}

.cta-final h2 {
  color: var(--white);
  font-size: 42px;
  margin-bottom: 24px;
}

.highlights {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.highlights span {
  color: var(--cream);
  font-size: 18px;
  font-weight: 600;
}

/* Contact Page */
.contact-methods {
  padding: 60px 20px;
  background-color: var(--white);
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.method-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  background-color: var(--cream);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 12px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  border: 2px solid var(--sage);
}

.method-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(74, 124, 89, 0.15);
  border-color: var(--primary);
}

.method-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}

.contact-info-section {
  padding: 60px 20px;
  background-color: var(--cream);
}

.info-layout {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-details {
  flex: 1 1 400px;
}

.info-block {
  background-color: var(--white);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary);
}

.contact-form-wrapper {
  flex: 1 1 500px;
  background-color: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 16px var(--shadow);
}

.form-placeholder {
  background-color: var(--cream);
  padding: 24px;
  border-radius: 12px;
  color: var(--dark);
  line-height: 2;
}

.form-placeholder .note {
  font-size: 14px;
  color: var(--forest);
  margin-top: 16px;
  font-style: italic;
}

.team-departments {
  padding: 60px 20px;
  background-color: var(--white);
}

.departments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.department-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  background-color: var(--cream);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 12px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.department-card:hover {
  transform: translateY(-4px);
}

.department-card img {
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
}

.social-media {
  padding: 60px 20px;
  background-color: var(--cream);
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  background-color: var(--white);
  border-radius: 12px;
  transition: all 0.3s ease;
  min-width: 120px;
}

.social-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(74, 124, 89, 0.15);
}

.social-link img {
  width: 40px;
  height: 40px;
}

.response-time {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 24px;
  font-weight: 600;
  margin-top: 16px;
}

/* Legal Pages */
.legal-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--sage) 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 3px solid var(--primary);
}

.legal-hero .meta {
  color: var(--forest);
  font-size: 14px;
  margin-top: 8px;
}

.legal-content {
  padding: 60px 20px;
  background-color: var(--white);
}

.toc {
  flex: 0 0 280px;
  background-color: var(--cream);
  padding: 24px;
  border-radius: 12px;
  position: sticky;
  top: 100px;
  height: fit-content;
  box-shadow: 0 2px 12px var(--shadow);
}

.toc h3 {
  margin-bottom: 16px;
  color: var(--primary);
}

.toc ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toc a {
  color: var(--dark);
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
}

.toc a:hover {
  background-color: var(--sage);
  color: var(--white);
}

.legal-text {
  flex: 1 1 700px;
}

.legal-text section {
  margin-bottom: 40px;
}

.legal-text h2 {
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--sage);
}

.legal-text h3 {
  color: var(--forest);
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-text ul {
  margin-left: 24px;
}

.legal-text li {
  padding: 8px 0;
  position: relative;
  padding-left: 20px;
}

.legal-text li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.user-rights {
  padding: 60px 20px;
  background-color: var(--white);
}

.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.right-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  background-color: var(--cream);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 12px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.right-card:hover {
  transform: translateY(-4px);
}

.right-card img {
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
}

.data-request {
  padding: 60px 20px;
  background-color: var(--cream);
  text-align: center;
}

.legal-sections {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.legal-sections section {
  background-color: var(--cream);
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.value-prop {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 24px;
  font-weight: 600;
  margin-top: 16px;
}

/* Cookie Policy */
.cookie-types {
  padding: 60px 20px;
  background-color: var(--white);
}

.cookie-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.cookie-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background-color: var(--cream);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--shadow);
  position: relative;
  margin-bottom: 20px;
  border: 2px solid var(--sage);
}

.status.active {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.toggle {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--primary);
  font-weight: 600;
}

.cookie-management {
  padding: 60px 20px;
  background-color: var(--cream);
}

.management-info {
  max-width: 900px;
  margin: 0 auto;
}

.browser-instructions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.browser-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: var(--white);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--forest) 100%);
  color: var(--white);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  margin-top: 32px;
}

.cta-box h3 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-box p {
  color: var(--cream);
  margin-bottom: 24px;
}

.cookie-list {
  padding: 60px 20px;
  background-color: var(--white);
}

.table-wrapper {
  overflow-x: auto;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
}

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

.cookie-table th,
.cookie-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--cream);
}

.cookie-table tbody tr:hover {
  background-color: var(--cream);
}

/* 404 Error Page */
.error-section {
  padding: 80px 20px;
  text-align: center;
}

.error-content {
  margin-bottom: 60px;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 24px;
}

.search-widget {
  max-width: 600px;
  margin: 60px auto;
  background-color: var(--cream);
  padding: 40px;
  border-radius: 16px;
}

.search-box {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.search-box input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--sage);
  border-radius: 24px;
  font-size: 16px;
}

.search-btn {
  padding: 14px 32px;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.popular-searches {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.popular-searches a {
  padding: 8px 16px;
  background-color: var(--white);
  border-radius: 16px;
  color: var(--primary);
  font-size: 14px;
  transition: all 0.3s ease;
}

.popular-searches a:hover {
  background-color: var(--primary);
  color: var(--white);
}

.helpful-links {
  margin: 60px 0;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.link-card {
  flex: 0 0 200px;
  background-color: var(--cream);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 12px var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(74, 124, 89, 0.15);
}

.link-card img {
  width: 50px;
  height: 50px;
}

.contact-support {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--cream);
  padding: 40px;
  border-radius: 16px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
}

.contact-info img {
  width: 24px;
  height: 24px;
}

/* Thank You Page */
.thank-you-section {
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(74, 124, 89, 0.2);
}

.confirmation {
  font-size: 20px;
  color: var(--forest);
  margin-bottom: 60px;
}

.next-steps {
  margin-bottom: 60px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.step-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  max-width: 350px;
  background-color: var(--cream);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 12px var(--shadow);
}

.step-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}

.continue-exploring {
  margin-bottom: 60px;
}

.explore-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid var(--sage);
}

.explore-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(74, 124, 89, 0.15);
  border-color: var(--primary);
}

.social-connect {
  background-color: var(--cream);
  padding: 40px;
  border-radius: 16px;
  max-width: 700px;
  margin: 0 auto;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: var(--cream);
  padding: 60px 20px 24px;
  border-top: 4px solid var(--primary);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-col p,
.tagline {
  color: var(--sage);
  margin-bottom: 12px;
  line-height: 1.7;
}

.footer-col h3 {
  color: var(--accent);
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li a {
  color: var(--cream);
  transition: all 0.3s ease;
  display: block;
  padding: 4px 0;
}

.footer-col li a:hover {
  color: var(--accent);
  padding-left: 8px;
}

.footer-legal {
  border-top: 1px solid rgba(168, 184, 159, 0.2);
  border-bottom: 1px solid rgba(168, 184, 159, 0.2);
  padding: 24px 0;
  margin-bottom: 24px;
}

.footer-legal ul {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--sage);
  font-size: 14px;
}

.footer-legal a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(168, 184, 159, 0.2);
}

.footer-bottom p {
  color: var(--sage);
  font-size: 14px;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px var(--shadow);
  z-index: 999;
  border-top: 3px solid var(--primary);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-consent .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 400px;
  color: var(--dark);
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.accept-all {
  background-color: var(--primary);
  color: var(--white);
}

.accept-all:hover {
  background-color: var(--forest);
}

.reject-all {
  background-color: transparent;
  color: var(--dark);
  border: 2px solid var(--sage);
}

.reject-all:hover {
  background-color: var(--cream);
}

.cookie-settings {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.cookie-settings:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(44, 62, 42, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background-color: var(--white);
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px var(--shadow);
}

.cookie-category {
  background-color: var(--cream);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.category-toggle {
  width: 50px;
  height: 26px;
  background-color: var(--sage);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-toggle.active {
  background-color: var(--primary);
}

.category-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.category-toggle.active::after {
  left: 27px;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero .subheadline {
    font-size: 18px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .article-card,
  .news-card,
  .service-card,
  .analysis-card,
  .report-card,
  .webinar-card,
  .feature-card,
  .benefit-card,
  .method-card,
  .department-card {
    flex: 1 1 100%;
  }
  
  .content-layout {
    flex-direction: column;
  }
  
  .sidebar {
    width: 100%;
  }
  
  .toc {
    position: static;
    width: 100%;
  }
  
  .stat-item {
    flex: 1 1 calc(50% - 32px);
  }
  
  .report-showcase,
  .webinar-banner {
    flex-direction: column;
  }
  
  .pricing-tier,
  .package-card {
    flex: 1 1 100%;
  }
  
  .error-code {
    font-size: 80px;
  }
  
  .search-box {
    flex-direction: column;
  }
  
  .cookie-consent .container {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .stat-item {
    flex: 1 1 100%;
  }
  
  .cta-button,
  .cta-primary,
  .cta-secondary {
    width: 100%;
    text-align: center;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
}