/* ===================================
   MYTHIC AVENUE - INDUSTRIAL MODERN CSS
   Complete Stylesheet for All Pages
   Design Style: Industrial Modern
   =================================== */

/* === CSS RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, sans-serif;
  line-height: 1.6;
  color: #2a2a2a;
  background-color: #f0f0f0;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* === TYPOGRAPHY - INDUSTRIAL MODERN === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h2 {
  font-size: 36px;
  border-left: 4px solid #9d7d1a;
  padding-left: 20px;
  margin-bottom: 30px;
}

h3 {
  font-size: 24px;
  color: #2C5F7C;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #333;
}

.subheadline {
  font-size: 20px;
  color: #555;
  font-weight: 300;
  margin-bottom: 24px;
}

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

/* === HEADER - INDUSTRIAL STYLE === */
header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid #9d7d1a;
}

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

header img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

header nav {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

header nav a {
  color: #f0f0f0;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 12px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

header nav a:hover {
  color: #9d7d1a;
  border-bottom-color: #9d7d1a;
}

/* === MOBILE MENU BUTTON === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #1a1a1a;
  color: #9d7d1a;
  border: 2px solid #9d7d1a;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #9d7d1a;
  color: #1a1a1a;
}

/* === MOBILE MENU OVERLAY === */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  border-left: 3px solid #9d7d1a;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #9d7d1a;
  border: 2px solid #9d7d1a;
  padding: 8px 12px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #9d7d1a;
  color: #1a1a1a;
}

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

.mobile-nav a {
  color: #f0f0f0;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 1px solid #444;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #9d7d1a;
  padding-left: 10px;
}

/* === HERO SECTION - INDUSTRIAL MODERN === */
.hero {
  background: linear-gradient(135deg, #2C5F7C 0%, #1a4a61 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(157, 125, 26, 0.1) 35px, rgba(157, 125, 26, 0.1) 70px);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero .subheadline {
  color: #e0e0e0;
  font-size: 20px;
  margin-bottom: 32px;
}

.hero p {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 32px;
  font-size: 18px;
}

/* === HERO 404 === */
.hero-404 {
  background: linear-gradient(135deg, #8B7355 0%, #6a5840 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.hero-404 h1 {
  color: #fff;
  font-size: 56px;
}

/* === HERO THANK YOU === */
.hero-thankyou {
  background: linear-gradient(135deg, #2C5F7C 0%, #1a4a61 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.hero-thankyou h1 {
  color: #fff;
}

/* === BUTTONS - INDUSTRIAL STYLE === */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: #9d7d1a;
  color: #1a1a1a;
  border-color: #9d7d1a;
  box-shadow: 0 4px 12px rgba(157, 125, 26, 0.3);
}

.btn-primary:hover {
  background: #1a1a1a;
  color: #9d7d1a;
  box-shadow: 0 6px 16px rgba(157, 125, 26, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #f0f0f0;
  border-color: #f0f0f0;
}

.btn-secondary:hover {
  background: #f0f0f0;
  color: #1a1a1a;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

/* === SECTIONS - CONSISTENT SPACING === */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

/* === PROBLEM-SOLUTION SECTION === */
.problem-solution {
  background: #fff;
  padding: 60px 20px;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.problem-list li {
  padding: 16px 16px 16px 50px;
  background: #f5f5f5;
  border-left: 4px solid #2C5F7C;
  position: relative;
  font-weight: 600;
  color: #333;
}

.problem-list li::before {
  content: '✗';
  position: absolute;
  left: 16px;
  color: #2C5F7C;
  font-size: 20px;
}

/* === METHOD / STEPS SECTION === */
.method {
  background: #2a2a2a;
  color: #f0f0f0;
  padding: 60px 20px;
}

.method h2 {
  color: #9d7d1a;
  border-left-color: #9d7d1a;
}

.steps {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0;
}

.step {
  flex: 1 1 280px;
  max-width: 350px;
  background: #1a1a1a;
  padding: 32px 24px;
  border: 2px solid #9d7d1a;
  position: relative;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(157, 125, 26, 0.3);
}

.step h3 {
  color: #9d7d1a;
  font-size: 28px;
  margin-bottom: 16px;
}

.step p {
  color: #e0e0e0;
}

.outcome {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #9d7d1a;
  margin: 32px 0;
  padding: 24px;
  background: #1a1a1a;
  border: 2px solid #9d7d1a;
}

/* === SERVICES GRID - FLEXBOX === */
.service-grid,
.card-container {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 40px 0;
}

.service-card,
.card {
  flex: 1 1 280px;
  max-width: 350px;
  background: #fff;
  padding: 32px 24px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover,
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 95, 124, 0.2);
  border-color: #2C5F7C;
}

.service-card h3,
.card h3 {
  color: #2C5F7C;
  margin-bottom: 16px;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #9d7d1a;
  margin: 16px 0;
}

/* === SERVICE DETAIL === */
.service-detail {
  background: #fff;
  padding: 40px 32px;
  margin-bottom: 32px;
  border-left: 4px solid #2C5F7C;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-detail.highlight {
  background: linear-gradient(135deg, #2C5F7C 0%, #1a4a61 100%);
  color: #fff;
  border-left-color: #9d7d1a;
}

.service-detail.highlight h2,
.service-detail.highlight h3 {
  color: #fff;
}

.service-detail.highlight .price {
  color: #9d7d1a;
}

.save {
  background: #9d7d1a;
  color: #1a1a1a;
  padding: 8px 16px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 16px;
}

/* === BENEFITS SECTION === */
.benefits {
  background: #f5f5f5;
  padding: 60px 20px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 32px auto;
}

.benefits-list li {
  padding: 20px 20px 20px 60px;
  background: #fff;
  border-left: 4px solid #9d7d1a;
  position: relative;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  color: #9d7d1a;
  font-size: 24px;
  font-weight: 700;
}

/* === TESTIMONIALS - DARK TEXT ON LIGHT BACKGROUND === */
.testimonials {
  background: #e8e8e8;
  padding: 60px 20px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  padding: 32px 24px;
  margin-bottom: 24px;
  border-left: 4px solid #2C5F7C;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-card .author {
  color: #2C5F7C;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  margin-top: 8px;
}

.stats {
  text-align: center;
  font-weight: 700;
  color: #2C5F7C;
  font-size: 18px;
  margin-top: 32px;
}

/* === TRUST BAR === */
.trust-bar {
  text-align: center;
  font-weight: 600;
  color: #e0e0e0;
  font-size: 14px;
  margin-top: 24px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.2);
}

/* === TIMELINE === */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 32px auto;
}

.timeline p {
  padding: 16px 20px;
  background: #2a2a2a;
  color: #f0f0f0;
  border-left: 4px solid #9d7d1a;
  font-weight: 600;
}

/* === PACKAGES / PRICING === */
.package {
  background: #fff;
  padding: 32px 24px;
  margin-bottom: 24px;
  border: 2px solid #ddd;
  transition: all 0.3s ease;
}

.package:hover {
  border-color: #2C5F7C;
  box-shadow: 0 8px 20px rgba(44, 95, 124, 0.15);
}

.package.highlight {
  border-color: #9d7d1a;
  background: #fffbf0;
}

.package h3 {
  color: #2C5F7C;
  margin-bottom: 16px;
}

/* === INCOME STREAMS === */
.income-streams .stream {
  background: #fff;
  padding: 24px 20px;
  margin-bottom: 20px;
  border-left: 4px solid #9d7d1a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.income-streams .stream h3 {
  color: #2C5F7C;
  margin-bottom: 8px;
}

.income-streams .stream p {
  color: #9d7d1a;
  font-size: 24px;
  font-weight: 700;
}

.income-streams .total {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #2C5F7C;
  margin-top: 32px;
  padding: 24px;
  background: #f5f5f5;
  border: 2px solid #9d7d1a;
}

/* === PHASES === */
.service-phases .phase {
  background: #fff;
  padding: 24px 20px;
  margin-bottom: 20px;
  border-left: 4px solid #2C5F7C;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* === SUCCESS STORIES === */
.featured-story {
  background: #fff;
  padding: 60px 20px;
  margin-bottom: 40px;
}

.story,
.case {
  background: #f5f5f5;
  padding: 32px 24px;
  margin-bottom: 24px;
  border-left: 4px solid #2C5F7C;
}

.story h3 {
  color: #2C5F7C;
  margin-bottom: 12px;
}

.story .total {
  font-size: 24px;
  font-weight: 700;
  color: #9d7d1a;
  margin-top: 16px;
}

/* === TRANSFORMATION PATHS === */
.transformation-paths .path {
  background: #2a2a2a;
  color: #f0f0f0;
  padding: 32px 24px;
  margin-bottom: 24px;
  border: 2px solid #9d7d1a;
  text-align: center;
}

.transformation-paths .path h3 {
  color: #9d7d1a;
}

.transformation-paths .path p {
  color: #9d7d1a;
  font-size: 28px;
  font-weight: 700;
}

/* === 404 HELPFUL LINKS === */
.helpful-links {
  background: #fff;
  padding: 60px 20px;
}

.links-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0;
}

.link-card {
  flex: 1 1 200px;
  max-width: 250px;
  background: #2C5F7C;
  color: #fff;
  padding: 32px 24px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.link-card:hover {
  background: #9d7d1a;
  color: #1a1a1a;
  transform: translateY(-4px);
}

/* === CTA SECTIONS === */
.cta,
.cta-404,
.final-cta,
.cta-thankyou {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #f0f0f0;
  padding: 80px 20px;
  text-align: center;
}

.cta h2,
.cta-404 h2,
.final-cta h2 {
  color: #9d7d1a;
  border-left: none;
  padding-left: 0;
}

.urgency {
  color: #9d7d1a;
  font-weight: 700;
  font-size: 18px;
  margin-top: 24px;
  padding: 16px;
  background: rgba(157, 125, 26, 0.1);
  border: 1px solid #9d7d1a;
}

/* === CONTACT OPTIONS === */
.contact-options .option {
  background: #fff;
  padding: 32px 24px;
  margin-bottom: 24px;
  border-left: 4px solid #2C5F7C;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* === CONTACT FORM INFO === */
.contact-form {
  background: #f5f5f5;
  padding: 60px 20px;
}

.form-info {
  max-width: 600px;
  margin: 32px auto;
  background: #fff;
  padding: 40px 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.privacy-note {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-top: 24px;
}

/* === OFFICE INFO === */
.office-info {
  background: #fff;
  padding: 60px 20px;
}

/* === TEAM CONTACT === */
.team-contact {
  background: #f5f5f5;
  padding: 60px 20px;
}

.contact-person {
  background: #fff;
  padding: 24px 20px;
  margin-bottom: 20px;
  border-left: 4px solid #9d7d1a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-person h3 {
  color: #2C5F7C;
  margin-bottom: 8px;
}

/* === FAQ === */
.faq-contact,
.faq-item {
  background: #fff;
  padding: 40px 20px;
}

.faq-item {
  margin-bottom: 24px;
  padding: 24px 20px;
  border-left: 4px solid #2C5F7C;
  background: #f5f5f5;
}

.faq-item h3 {
  color: #2C5F7C;
  margin-bottom: 12px;
  font-size: 18px;
}

/* === TRUST BADGES === */
.trust,
.trust-badges {
  background: #2a2a2a;
  color: #f0f0f0;
  padding: 40px 20px;
  text-align: center;
}

.trust h2,
.trust-badges h2 {
  color: #9d7d1a;
  border-left: none;
  padding-left: 0;
}
.trust p, .final-cta p,.cta p, .hero-thankyou p, .cta-thankyou h2 {
  color: white;
}

/* === LEGAL CONTENT === */
.legal-content {
  background: #fff;
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  color: #2C5F7C;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

.legal-content h3 {
  color: #8B7355;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.legal-content p,
.legal-content ul {
  margin-bottom: 16px;
  line-height: 1.8;
  color: #333;
}

.legal-content ul {
  padding-left: 24px;
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: 8px;
}

/* === NEXT STEPS === */
.next-steps {
  background: #f5f5f5;
  padding: 60px 20px;
}

.next-steps ol {
  max-width: 700px;
  margin: 32px auto;
  counter-reset: step-counter;
}

.next-steps ol li {
  counter-increment: step-counter;
  padding: 20px 20px 20px 60px;
  background: #fff;
  margin-bottom: 16px;
  border-left: 4px solid #2C5F7C;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.next-steps ol li::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  color: #2C5F7C;
  font-size: 24px;
  font-weight: 700;
}

/* === RESOURCES === */
.resources {
  background: #fff;
  padding: 60px 20px;
}

.resources ul {
  max-width: 700px;
  margin: 32px auto;
}

.resources ul li {
  padding: 20px 20px 20px 50px;
  background: #f5f5f5;
  margin-bottom: 16px;
  border-left: 4px solid #9d7d1a;
  position: relative;
}

.resources ul li::before {
  content: '→';
  position: absolute;
  left: 20px;
  color: #9d7d1a;
  font-size: 20px;
}

/* === TESTIMONIALS SHORT === */
.testimonials-short {
  background: #e8e8e8;
  padding: 60px 20px;
}

/* === FOOTER - INDUSTRIAL STYLE === */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #f0f0f0;
  padding: 60px 20px 30px;
  border-top: 3px solid #9d7d1a;
}

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

.footer-info {
  flex: 1 1 300px;
}

.footer-info img {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-info p {
  color: #e0e0e0;
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-links {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #e0e0e0;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  color: #9d7d1a;
  border-bottom-color: #9d7d1a;
  padding-left: 8px;
}

.copyright {
  text-align: center;
  color: #999;
  font-size: 14px;
  padding-top: 30px;
  border-top: 1px solid #444;
}

/* === COOKIE CONSENT BANNER === */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #f0f0f0;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  z-index: 1998;
  border-top: 3px solid #9d7d1a;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cookie-consent-text {
  flex: 1 1 400px;
  font-size: 14px;
  color: #e0e0e0;
}
.cookie-consent-text p {
  color: #e0e0e0;
}

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

.cookie-consent-buttons button {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
}

.cookie-accept-all {
  background: #9d7d1a !important;
  color: #1a1a1a;
  border-color: #9d7d1a;
}

.cookie-accept-all:hover {
  background: #1a1a1a !important;
  color: #9d7d1a;
}

.cookie-reject-all,
.cookie-settings {
  color: #f0f0f0;
  border-color: #f0f0f0;
}

.cookie-reject-all:hover,
.cookie-settings:hover {
  background: #f0f0f0 !important;
  color: #1a1a1a;
}

/* === COOKIE MODAL === */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: #fff;
  max-width: 600px;
  width: 100%;
  padding: 40px 32px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.cookie-modal-content h2 {
  color: #2C5F7C;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f5f5f5;
  border-left: 4px solid #2C5F7C;
}

.cookie-category h3 {
  color: #2C5F7C;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle input[type="checkbox"]:disabled {
  cursor: not-allowed;
}

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

.cookie-modal-buttons button {
  flex: 1 1 150px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #2C5F7C;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save-preferences {
  background: #9d7d1a;
  color: #1a1a1a;
  border-color: #9d7d1a;
}

.cookie-save-preferences:hover {
  background: #1a1a1a;
  color: #9d7d1a;
}

.cookie-modal-close {
  background: transparent;
  color: #2C5F7C;
}

.cookie-modal-close:hover {
  background: #2C5F7C;
  color: #fff;
}

/* === CONTENT GRIDS - FLEXBOX ONLY === */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin: 32px 0;
}

.content-grid > * {
  flex: 1 1 280px;
  max-width: 100%;
}

/* === TEXT-IMAGE SECTIONS === */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.text-image-section > * {
  flex: 1 1 300px;
}

/* === FEATURE ITEMS === */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px;
  background: #fff;
  border-left: 4px solid #2C5F7C;
  margin-bottom: 20px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  /* Hide desktop navigation */
  header nav {
    display: none;
  }

  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }

  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .subheadline {
    font-size: 18px;
  }

  /* Hero section */
  .hero {
    padding: 60px 20px;
  }

  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  /* Steps */
  .steps {
    flex-direction: column;
  }

  .step {
    max-width: 100%;
  }

  /* Service grid */
  .service-grid,
  .card-container {
    flex-direction: column;
  }

  .service-card,
  .card {
    max-width: 100%;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  /* Cookie consent */
  .cookie-consent-content {
    flex-direction: column;
    gap: 16px;
  }

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

  .cookie-consent-buttons button {
    width: 100%;
  }

  /* Text-image sections */
  .text-image-section {
    flex-direction: column;
  }

  /* Income streams */
  .income-streams .stream {
    max-width: 100%;
  }

  /* Links grid */
  .links-grid {
    flex-direction: column;
  }

  .link-card {
    max-width: 100%;
  }
}

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

  h2 {
    font-size: 24px;
  }

  .price {
    font-size: 28px;
  }

  .outcome {
    font-size: 20px;
  }

  .hero {
    padding: 40px 16px;
  }

  section {
    padding: 32px 16px;
  }

  .container {
    padding: 0 16px;
  }
}

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

.hero,
.service-card,
.testimonial-card,
.step {
  animation: fadeIn 0.6s ease;
}

/* === ACCESSIBILITY === */
:focus {
  outline: 2px solid #9d7d1a;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #9d7d1a;
  outline-offset: 2px;
}

/* === PRINT STYLES === */
@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-consent,
  .cta-buttons {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  a {
    text-decoration: underline;
  }
}