:root {
  --blue-1: #2f80ed;
  --blue-2: #56a0ff;
  --dark: #111827;
  --gray-1: #6b7280;
  --gray-2: #e5e7eb;
  --gray-3: #f9fafb;
  --yellow: #fde68a;
  --yellow-dark: #facc15;
  --black: #000;
  --white: #fff;
}


/* ================= HEADER BANNER ================= */

.banner {
 background: url(https://championshiplifeai.com/wp-content/uploads/2025/12/Group-2147228002.png) no-repeat center / cover;
  border-radius: 16px;
  padding: 24px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.banner-left h1 {
  font-size: 32px;
    line-height: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.banner-left p {
    font-size: 16px;
    opacity: 1;
    line-height: 24px;
}

.banner-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.banner-pill {
  background: linear-gradient(180deg, #ADD1FF 50%, #E6F0FE 75%, #FFFFFF 100%);
  padding: 9px 18px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 500;
  width: 223px;
  max-width: 223px;
  color: black;
  color: black;
    font-weight: 600;
    font-size: 18px;
    text-align: left;
    line-height: 24px;
}
.banner-pill span {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}
.banner {
    position: relative;
    overflow: hidden;
}
.banner-right img {
  width: 323px;
  height: 369px;
    object-fit: cover;
    position: relative;
    top: 87px;
}
.banner-right {
    position: absolute;
    right: 0;
}
/* ================= SECTION HEADER ================= */

.section-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ================= SESSION CARD ================= */

.session-card {
  background: var(--white);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 16px;
  border: 1px solid var(--gray-2);
}

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

.session-title {
  font-size: 16px;
  font-weight: 600;
}

.badge-live {
  background: var(--yellow-dark);
  color: #000;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.session-meta {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: var(--gray-1);
  margin-bottom: 14px;
}

.session-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.key-takeaway {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
}

.key-icon {
  background: var(--gray-3);
  border-radius: 50%;
  padding: 8px;
  font-size: 14px;
}

.register-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
}

/* ================= HOW IT WORKS ================= */

.how-it-works {
  background: var(--yellow);
  border-radius: 16px;
  padding: 24px;
  margin-top: 28px;
}

.how-title {
  font-weight: 600;
  margin-bottom: 16px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  background: rgba(255,255,255,0.5);
  border-radius: 12px;
  padding: 16px;
}

.step-number {
  width: 28px;
  height: 28px;
  background: #000;
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-bottom: 10px;
}

.step h4 {
  font-size: 14px;
  margin-bottom: 6px;
}

.step p {
  font-size: 13px;
  color: #374151;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .banner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .banner-left h1 {
    line-height: 1.2 !important;}
  .banner-right img {
    display: none;}
    .banner-actions {
    flex-direction: column;}
    .banner-actions{
      align-items: center;
    }

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

/* Outer wrapper with white background */
.questionnaire-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    padding: 20px;
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
}
h2.qa {
    padding-top: 20px;
    margin-bottom: 0px;
}
.questionnaire {
    padding: 50px;
}
/* Questionnaire container with banner image and black overlay */
.questionnaire {
    position: relative;
    background: url('https://championshiplifeai.com/wp-content/uploads/2025/12/Group-2147228002.png') no-repeat center / cover;
    padding: 0px;
    border-radius: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

/* Black overlay on image */
.questionnaire::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000091;
    border-radius: 20px;
    z-index: 0;
}

/* Make content above overlay */
.questionnaire > * {
    position: relative;
    z-index: 1;
}

/* Progress bar */
.progress-bar {
    height: 8px;
    background: #ffffff8a;
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
    width: 100%;
}
.questionnaire {
    padding: 50px;
}
.progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #f7971e, #ffd200) !important;
    border-radius: 4px;
    transition: width 0.4s ease;
}

/* Question steps */
.question {
    display: none;
    flex-direction: column;
    gap: 20px;
    animation: fadeIn 0.5s ease forwards;
    text-align: center;
}

.question.active {
    display: flex;
}

.question h2 {
    font-size: 34px;
    color:white;
    font-weight: 700;
    margin-bottom: 00px;
}
.question p {
    font-size: 18px;
}

/* Links */
.question a {
    display: inline-block;
    padding: 15px 20px;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    margin: 10px 0;
}

.question a:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #ffd200;
    transform: scale(1.05);
}

/* Navigation buttons */
.navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    width: 100%;
}

.navigation button {
    height: 56px;
    padding: 10px 36px;
    background: #ffd200 !important;
    color: #000 !important;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.navigation button:hover {
    transform: scale(1.05);
}

/* Thank you message */
.thank-you {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    display: none;
    color: white !important;
}

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

/* Responsive adjustments */
@media (max-width: 600px) {
    .questionnaire {
        padding: 25px;
    }
    .question a {
        width: 100%;
    }
    .navigation button {
        flex: 1;
        margin: 0 5px;
    }
}
