:root {
  --green: #1B4D3E; /* Deep green from your logo */
  --beige: #F4F0E6; /* Warm beige background */
  --light-bg: #FFFFFF;
  --text-dark: #2C2C2C;
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.25);
}

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

body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: var(--beige);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* HEADER */
.header {
  background: var(--green);
  padding: 0.6rem 0;
  color: white;
  animation: fadeInDown 0.8s ease;
}

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

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 36px; /* Smaller logo size */
  width: auto;
}

nav a {
  color: white;
  margin-left: 1rem;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

nav a:hover {
  opacity: 0.8;
}

nav .cta {
  background: white;
  color: var(--green);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
}


nav a:hover {
    opacity: 0.8;
}

nav .cta {
    background: white;
    color: var(--green);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

/* ===================== */
/* HERO (UPDATED) */
/* ===================== */
.hero {
  background: url("assets/hero-bg.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}
.hero-content {
  max-width: 720px;
  margin: auto;
  background: rgba(0, 0, 0, 0.65); /* Made background slightly darker for more contrast */
  padding: 2.5rem 2rem; /* Increased padding */
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5); /* Stronger shadow */
}
.hero h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -1px;
}
.hero .subtitle {
  font-size: 1rem; /* Slightly larger subtitle */
  margin-bottom: 30px; /* More space below subtitle */
  line-height: 1.6;
  color: #d1d1d1; /* Slightly lighter color for subtitle */
}

/* New: Pricing Box Styles */
.price-box {
  background-color: #f7f7f7;
  color: #333;
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  margin: 15px 0 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.price-box .deal-text {
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 5px;
}
.price-box .price-highlight {
  font-size: 1.5rem;
  font-weight: 700;
}
.price-box .old-price {
  text-decoration: line-through;
  color: #999;
}
.price-box .new-price {
  color: #e53935; /* A bright red to stand out */
}

/* New: CTA Button Styles */
.cta-button {
  display: inline-block;
  background: #ffdb4d; /* A vibrant yellow */
  color: #222;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cta-button:hover {
  background: #ffcc00;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Guarantee & Social Proof */
.guarantee, .social-proof {
  font-size: 0.9rem;
  margin-top: 20px;
  opacity: 0.8;
  line-height: 1.4;
}
.social-proof {
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  opacity: 1;
}

/* ===================== */
/* TEMPLATE SECTION (UPDATED) */
/* ===================== */
.template {
  padding: 5rem 1rem;
  background-color: #f7fdf9;
}
.template h2 {
  font-size: 2.3rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--green);
  font-weight: 700;
}
.template .tagline {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #444;
}
.template-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.template-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  flex: 1 1 300px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.template-card:hover {
  transform: translateY(-5px);
}
.template-card h3 {
  color: var(--green);
  margin-bottom: 1rem;
  font-weight: 600;
}
.template-card ul,
.template-card ol {
  padding-left: 1.2rem;
}
.template-card li {
  margin-bottom: 0.6rem;
}
.template .testimonial {
  font-size: 1.2rem;
  font-style: italic;
  border-left: 5px solid var(--green);
  padding-left: 1rem;
  margin: 2rem auto;
  max-width: 700px;
  color: #2c3e50;
}
.template-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem;
  margin-top: 2.5rem;
}
.template-images img {
  max-width: 45%;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.template-images img:hover {
  transform: scale(1.03);
}
@media (max-width: 768px) {
  .template-images img {
      max-width: 100%;
  }
}
.cta-box {
  text-align: center;
  margin: 2.5rem 0;
  padding: 2rem;
  background: #f9fbe7;
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}
.cta-text {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #1b5e20;
  font-weight: 600;
}
.download-btn,
.download-btn-yellow {
  display: inline-block;
  padding: 15px 28px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.download-btn {
  background-color: #2e7d32;
  color: #fff;
}
.download-btn:hover {
  background-color: #1b5e20;
  transform: translateY(-2px);
}
.download-btn-yellow {
  background-color: #fbc02d;
  color: #000;
}
.download-btn-yellow:hover {
  background-color: #f9a825;
  transform: translateY(-2px);
}

/* ANIMATIONS */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* BLOG SECTION */
.blog {
    background: white;
    padding: 3rem 0;
}

.blog-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-top: 1.5rem;
}

.blog-grid article {
    background: var(--beige);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1.4s ease;
}

.blog-grid article:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.blog-grid h4 {
    margin-bottom: 0.5rem;
    color: var(--green);
}

.blog-grid a {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--green);
    font-weight: bold;
}

/* FOOTER */
.footer {
    background: var(--green);
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
    animation: fadeInUp 1.6s ease;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 600px) {
    nav {
        display: none; /* Could be replaced with a burger menu */
    }
}

.inspired {
    background: #fdfdfd;
    padding: 50px 0;
    border-top: 2px solid #eee;
    border-bottom: 2px solid #eee;
    font-family: 'Georgia', serif;
  }
  
  .inspired .container {
    max-width: 800px;
    margin: auto;
    padding: 0 20px;
  }
  
  .inspired h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: bold;
    color: #222;
  }
  
  .inspired h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 5px;
    color: #444;
  }
  
  .inspired .book-author {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
  }
  
  .inspired .book-desc {
    text-align: center;
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .book-tags {
    text-align: center;
    margin-bottom: 25px;
  }
  
  .book-tags .tag {
    display: inline-block;
    background: #f0f4f8;
    color: #0057a3;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 4px;
  }
  
  .quote-list blockquote {
    position: relative;
    background: #fff;
    padding: 20px 25px;
    margin: 20px 0;
    border-left: 4px solid #0057a3;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  .quote-list blockquote::before {
    content: "“";
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 3rem;
    color: #0057a3;
    opacity: 0.2;
  }
  
  .quote-list blockquote::after {
    content: "”";
    position: absolute;
    bottom: -20px;
    right: 10px;
    font-size: 3rem;
    color: #0057a3;
    opacity: 0.2;
  }
  
  .quote-list blockquote p {
    margin: 0;
  }
  
  @media (max-width: 600px) {
    .inspired h2 {
      font-size: 1.6rem;
    }
    .quote-list blockquote {
      font-size: 1rem;
      padding: 15px 20px;
    }
  }
  

  .testimonials {
    background: #F4F0E6;
    padding: 60px 20px;
    text-align: center;
  }
  
  .testimonials h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .testimonial {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: left;
    position: relative;
  }
  
  .testimonial::before {
    content: "“";
    font-size: 3rem;
    color: #ffcc00;
    position: absolute;
    top: 10px;
    left: 15px;
    opacity: 0.4;
  }
  
  .quote {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .author {
    font-weight: bold;
    color: #555;
    font-size: 0.9rem;
  }
  
  @media (max-width: 600px) {
    .testimonials h2 {
      font-size: 1.6rem;
    }
  }
   

  .cta-box {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f9fbe7; /* light green background */
    border-radius: 10px;
  }
  
  .cta-text {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #1b5e20;
    font-weight: 600;
  }
  
  .download-btn,
  .download-btn-yellow {
    display: inline-block;
    padding: 14px 24px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.3s ease;
  }
  
  .download-btn {
    background-color: #2e7d32; /* green */
    color: #fff;
  }
  .download-btn:hover {
    background-color: #1b5e20;
    transform: scale(1.05);
  }
  
  .download-btn-yellow {
    background-color: #fbc02d; /* yellow */
    color: #000;
  }
  .download-btn-yellow:hover {
    background-color: #f9a825;
    transform: scale(1.05);
  }

  .wealth-calculator {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.wealth-calculator h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 2.2em;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.input-section {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.input-section h3 {
    color: #34495e;
    margin-bottom: 20px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group input.error {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.investment-sources {
    grid-column: span 2;
}

.sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.calculate-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #34db5b, #29b937);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 20px 0;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(52, 152, 219, 0.3);
}

.calculate-btn:active {
    transform: translateY(0);
}

.results-section {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.result-card {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.result-card.success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border: 2px solid #28a745;
}

.result-card.warning {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #ffc107;
}

.result-card.error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border: 2px solid #dc3545;
}

.result-value {
    font-size: 2.5em;
    font-weight: bold;
    margin: 10px 0;
}

.result-label {
    font-size: 1.1em;
    color: #666;
}

.chart-container {
    position: relative;
    height: 400px;
    margin-top: 20px;
    background: white;
    border-radius: 8px;
    padding: 20px;
}

.progress-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.progress-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #20c997);
    transition: width 0.8s ease-in-out;
    border-radius: 10px;
}

.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .investment-sources {
        grid-column: span 1;
    }

    .sources-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .progress-indicators {
        grid-template-columns: 1fr;
    }

    .wealth-calculator h2 {
        font-size: 1.8em;
    }

    .chart-container {
        height: 300px;
    }
}

/* Loading Animation */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #34db74;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Tooltip Styles */
.tooltip {
    position: relative;
    display: inline-block;
    cursor: help;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-size: 14px;
    z-index: 1000;
}

.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
} 

/* Retirement Calculator Styles */
.wealth-calculator {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  background: #f8f9f5;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  font-family: 'Inter', sans-serif;
}

.wealth-calculator h1 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1b4d3e;
  margin-bottom: 1.5rem;
}

.wealth-calculator p.tagline {
  text-align: center;
  margin-bottom: 1.5rem;
}

.input-section {
  background: white;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.input-section h3 {
  color: #1b4d3e;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  border-bottom: 2px solid #e5e9e7;
  padding-bottom: 0.5rem;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: #2c3e50;
}

.form-group input {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: #27ae60;
  box-shadow: 0 0 0 2px rgba(39,174,96,0.2);
}

.error-message {
  color: #d9534f;
  font-size: 0.85rem;
  margin-top: 0.2rem;
  display: none;
}

.calculate-btn {
  width: 100%;
  background: linear-gradient(135deg, #27ae60, #1b4d3e);
  color: white;
  padding: 0.9rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.calculate-btn:hover {
  background: linear-gradient(135deg, #1b4d3e, #27ae60);
}

.results-section {
  margin-top: 2rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.result-card {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.result-label {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.result-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1b4d3e;
}

.chart-container {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.sources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

/* Responsive */
@media (max-width: 600px) {
  .wealth-calculator {
      padding: 1rem;
  }
}

/* Retirement Calculator Promo Section */
.promo-calculator {
  background: linear-gradient(135deg, #e8f5e9, #fff);
  padding: 3rem 1rem;
  border-top: 3px solid #2e7d32;
}

.promo-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.promo-text {
  flex: 1 1 400px;
}

.promo-text h2 {
  font-size: 2rem;
  color: #2e7d32;
  margin-bottom: 1rem;
}

.promo-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.promo-btn {
  background: #2e7d32;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.promo-btn:hover {
  background: #1b5e20;
}

.promo-image {
  flex: 1 1 300px;
  text-align: center;
}

.promo-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

.progress-bars-container {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8fdf9;
  border: 1px solid #dceee3;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.progress-item {
  margin-bottom: 1.2rem;
}

.progress-label {
  font-weight: 600;
  color: #2d5d50;
  display: block;
  margin-bottom: 0.3rem;
}

.progress-bar {
  background: #e3ece8;
  border-radius: 20px;
  overflow: hidden;
  height: 16px;
  position: relative;
}

.progress-fill {
  background: linear-gradient(90deg, #3ca374, #2d5d50);
  height: 100%;
  width: 0;
  transition: width 1s ease;
}

.progress-text {
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.3rem;
  display: inline-block;
}

/* === Blog Article Improvements === */
.blog-article {
  max-width: 850px;
  margin: 3rem auto;
  line-height: 1.7;
}

.article-image {
  text-align: center;
  margin: 2rem 0;
}

.article-image img {
  max-width: 100%;
  height: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

/* CTA Section */
.cta-section {
  margin-top: 4rem;
  padding: 2.5rem 2rem;
  text-align: center;
  background: #f9fdfb;
  border: 1px solid #e3f5ea;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}

.cta-section h2 {
  color: var(--green);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #444;
}

.cta-section .download-btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-weight: bold;
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cta-section .download-btn:hover {
  background: #124031;
  transform: translateY(-2px);
}

/* Intro Section */
.intro-section {
  background: #f9fdfb;
  padding: 1.5rem 2rem;
  border: 1px solid #e3f5ea;
  border-radius: 10px;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.1rem;
  color: #333;
}

.tip-note {
  font-style: italic;
  color: #3c7f5a;
  margin-top: 0.5rem;
}

/* Form Tips */
.form-group .tip {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.9rem;
  color: #666;
}

/* Investment Explainer Section */
.investment-explainer {
  background: #f9fafc; /* light subtle background */
  border: 1px solid #e0e6ef;
  border-radius: 8px;
  padding: 20px 25px;
  margin: 30px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.investment-explainer h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #2a3d66;
  font-weight: 600;
}

.investment-explainer p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 10px;
}

.investment-explainer ul {
  margin: 10px 0 15px 20px;
  padding: 0;
  list-style-type: disc;
}

.investment-explainer li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #333;
}

.investment-explainer strong {
  color: #1a2a55;
}

/* Integration Video Section */
.integration-video {
  background: #0d1b2a; /* dark background to match site */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 2rem;
  margin: 2.5rem 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.integration-video:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
}

.integration-video h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f9f9f9;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.integration-video iframe {
  border: none;
  width: 100%;
  height: 420px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 900px;
  width: 90%;
  background: #ffffff;
  color: #222;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 15px;
  line-height: 1.5;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  z-index: 10000;
  animation: slideUp 0.6s ease-out;
}

#cookie-banner p {
  margin: 0;
}

#cookie-banner a {
  color: #f4b400; /* site yellow */
  font-weight: 600;
  text-decoration: none;
}

#cookie-banner a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

#cookie-banner button {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

#accept-cookies {
  background: #f4b400;
  color: #fff;
}

#accept-cookies:hover {
  background: #d9a200;
}

#decline-cookies {
  background: #f1f1f1;
  color: #333;
}

#decline-cookies:hover {
  background: #e0e0e0;
}

@keyframes slideUp {
  from { opacity: 0; transform: translate(-50%, 30px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

.legal-page {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  font-family: system-ui, sans-serif;
  line-height: 1.7;
}
.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #111;
  text-align: center;
}
.legal-page h2 {
  margin-top: 2rem;
  font-size: 1.25rem;
  color: #222;
  border-left: 4px solid #f5b301;
  padding-left: 0.75rem;
}
.legal-page p {
  margin: 1rem 0;
  color: #444;
}
.legal-page ul {
  margin: 1rem 0;
  padding-left: 1.2rem;
}
.legal-page a {
  color: #f5b301;
  text-decoration: underline;
}