/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f7f9fc;
  color: #111;
  line-height: 1.4;
}
body {
  font-family: 'Inter', sans-serif;
}

/* Top Blue Header */
.top-header {
  background-color: #3867d6;
  text-align: center;
  padding: 16px 0;
}

.logo {
  height: 42px;
  object-fit: contain;
}

/* Hook Headline Section */
.hero-hook {
  background-color: #f7f9fc;
  padding: 48px 24px 32px 24px;
}

.hook-container {
  max-width: 800px;
  margin-left: 60px; /* or 40px, whatever looks good */
  text-align: left;
}

.hero-headline {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 32px; /* Increased from 28px */
  line-height: 1.25;
  color: #000;
}

/* Two-Column Layout Section */
.two-column-layout {
  background-color: #f7f9fc;
  padding: 40px 24px;
}

.column-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

/* Left Column */
.left-column {
  flex: 1;
}

.white-box {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

/* Right Column */
/* Right Column */
.right-column {
  width: 320px;
  position: sticky;
  top: -30px;
  align-self: flex-start;
  height: fit-content;
}

.sticky-box {
  position: relative;       /* ✅ NOT sticky */
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.left-content {
  max-width: 100%;
  width: 100%;
}

.left-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px 0;
}

.benefits-list {
  list-style: none;
  padding-left: 0;
}

.benefits-list li {
  margin-bottom: 40px;
}

.benefits-list h4 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
}

.cta-section, .faq-section, .final-cta {
  margin-top: 48px;
}

.cta-button {
  display: inline-block;
  background-color: #28a745; /* your green */
  color: white;
  font-weight: 700;
  padding: 16px 24px;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  text-decoration: none; /* <-- this is crucial */
  width: 100%;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #218838;
}


.cta-button:hover {
  background-color: #218838; /* darker green on hover */
}


.cta-button:hover {
  background-color: #000000;
}
/* Reduce space between list items */
.tight-list {
  margin-top: 0.5em;
  margin-bottom: 1.5em;
  padding-left: 1.2em;
}

.tight-list li {
  margin-bottom: 4px; /* less space between bullets */
  line-height: 1.4;
}
.testimonial-box {
  background-color: #f8f8f8;
  border-left: 4px solid #28a745;
  padding: 16px;
  margin: 16px 0;
  border-radius: 8px;
  font-style: italic;
}

.testimonial-author {
  display: block;
  margin-top: 8px;
  font-weight: bold;
  text-align: right;
}


/* Hide mobile-only section by default (desktop view) */
.mobile-only {
  display: none;
}

/* Show mobile-only section on mobile, hide right column */
@media (max-width: 768px) {
  .mobile-only {
    display: block;
    margin-top: 24px;
  }

  .right-column {
    display: none;
  }

  .left-column {
    width: 100%;
    float: none;
    padding: 0px; /* optional: padding for nice mobile spacing */
    margin: 0;
  }

  .sticky-box {
    background-color: #f9f9f9;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .tight-list {
    padding-left: 20px;
    margin-bottom: 16px;
  }

  .tight-list li {
    margin-bottom: 6px;
  }

  .cta-button {
    display: block;
    text-align: center;
    background-color: #218838;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
  }
  .cta-button:hover {
    background-color: #000000;
  }

}
@media (max-width: 768px) {
  html, body {
    padding: 4;
    margin: 0;
    width: 100%;
    overflow-x: hidden;
  }

  .page-wrapper,
  .column-wrapper {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }

  .two-column-layout {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }

  .left-column {
    margin: 5px !important;
    padding: 0 !important;
    width: 100% !important;
    float: none !important;
    display: block;
  }

  .white-box {
    margin: 0 !important;
    padding: 16px !important;
    width: 100% !important;
    box-sizing: border-box;
  }
}
@media (max-width: 768px) {
  .hero-hook {
    padding: 32px 16px 24px 16px; /* Less vertical & horizontal padding */
  }

  .hook-container {
    line-height: 1.3;
    font-size: 1rem;         /* ≈16px, a comfortable body size */
    margin: 0 auto;              /* Center the container on mobile */
    max-width: 100%;             /* Ensure it uses full width */
    padding: 0;                  /* Remove any added spacing */
    text-align: left;            /* You can keep this or set to center if you prefer */
  }

  .hero-headline {
    font-size: 1.2rem;           /* ~24px — matches your reference */
    line-height: 1.4;            /* More readable spacing */
    font-weight: 700;            /* Slightly lighter than 800 for less visual bulk */
    margin-bottom: 12px;
    color: #111;                 /* Slightly softened black for polish */
  }
}
@media (max-width: 768px) {
  .mobile-only {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .mobile-only .sticky-box {
    width: calc(100% + 32px); /* cancel out .white-box padding: 16px left + 16px right */
    margin-left: -24px;
    margin-right: -16px;
    box-sizing: border-box;
    background: #f7f9fc; /* optional aesthetic */
    border-radius: 8px;
    padding: 16px;
  }
}

@media (max-width: 768px) {
  .sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 24px;
    text-align: center;
    background-color: #218838;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    z-index: 9999;
    border-radius: 0; /* square corners for edge-to-edge look */
    text-decoration: none;
  }
}

@media (max-width: 768px) {
  .sticky-spacer {
    height: 72px; /* match height of your sticky CTA */
  }
}
