:root {
    --banner-bg: #020B26; /* Deep navy */
    --highlight-yellow: #FFF200;
    --cta-green: #00A846;
    --text-black: #000000;
    --text-dark: #333333;
    --container-width: 430px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #F8F8F8;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Width Constraint */
.page-container {
    width: 100%;
    max-width: var(--container-width);
    background-color: #fff;
    padding: 10px 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

/* Top Banner */
.top-banner {
    width: 100%;
    max-width: var(--container-width);
    background-color: var(--banner-bg);
    color: white;
    text-align: center;
    font-weight: 800;
    font-size: 28px;
    padding: 10px 0;
    text-transform: capitalize;
}
h4.phase-label {
    color: #4ebefd;
    font-size: 21px;
    font-weight: 700;
}
/* Header / Hero */
.hero-header {
    text-align: center;
    margin-bottom: 24px;
    margin-top: 10px;
}

.hero-header h1 {
    font-size: 24px;
    font-weight: 800;
    color: black;
    line-height: 1.3;
    margin-bottom: 16px;
}

.highlights {
    line-height: 1.6;
    font-size: 18px;
    font-weight: 700;
    color: black;
    display: inline;
}

.highlight-yellow {
    background-color: #ffff00;
    padding: 2px 4px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

/* Video Placeholer */
.video-section {
    position: relative;
    margin-bottom: 24px;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #000;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    /* Mimic speaker background */
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><rect width="100%" height="100%" fill="%23555"/></svg>'); /* Fallback */
    background-size: cover;
}

.speaker-bg {
    position: absolute;
    inset: 0;
    /* Using a gradient to simulate the blurry BG from screenshot */
    background: linear-gradient(135deg, #7c3aed 0%, #d946ef 50%, #f59e0b 100%);
    opacity: 0.9;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 46px;
    background-color: #1748bd; /* Blue play button */
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0.9;
}

.day-badge {
    position: absolute;
    bottom: 50px; /* Above controls */
    width: 65px;
    height: 65px;
    background: linear-gradient(to bottom, rgba(40,40,40,0.85), rgba(80,80,80,0.7));
    backdrop-filter: blur(4px);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.day-1 { left: 22%; }
.day-2 { right: 22%; }

.day-label {
    font-size: 11px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: -2px;
}
.day-number {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.volume-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    color: white;
    background-color: rgba(0,0,0,0.6);
    padding: 12px;
    border-radius: 50%;
    font-size: 16px;
    z-index: 5;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 32px; /* Screenshot looks thin */
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0)); 
    background-color: rgba(21, 58, 145, 0.9); /* Blue tint bar from image */
    display: flex;
    align-items: center;
    padding: 0 12px;
    color: white;
    gap: 10px;
    z-index: 5;
}

.time {
    font-size: 11px;
    font-weight: 700;
}

.progress-bar {
    flex: 1;
    height: 3px;
    background-color: rgba(255,255,255,0.3);
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 2px;
}

.progress-fill {
    width: 25%;
    height: 100%;
    background-color: white;
}

.progress-knob {
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    margin-left: -5px;
}

.dots-icon {
    font-size: 14px;
}

/* Content Text */
.content-text {
    font-size: 18px;
    line-height: 1.5;
    color: black;
    margin-bottom: 24px;
    text-align: center;
    padding: 0 4px;
}

.content-text em {
    font-weight: 400; /* mimic screenshot style */
    font-style: italic;
}

/* CTA */
.cta-section {
    text-align: center;
    margin-bottom: 30px;
}

.green-cta-btn {
    background-color: var(--cta-green);
    color: white;
    border: none;
    padding: 18px 20px;
    border-radius: 50px;
    font-size: 21px;
    font-weight: 800;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 6px 15px rgba(0, 168, 70, 0.25);
    transition: transform 0.1s;
    font-family: 'Poppins', sans-serif;
}
.green-cta-btn:active {
    transform: scale(0.98);
}

/* Sale Details */
.sale-details {
    font-size: 17px;
    line-height: 1.5;
    color: black;
    text-align: center;
    padding: 0 4px;
}

.sale-details strong {
    font-weight: 700;
}

/* Learning Preview Section (Section 2) */
.learning-preview-section {
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.learning-card {
    background-color: #020B26; /* Deep navy matching banner */
    border-radius: 30px;
    padding: 30px 20px;
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    margin: 0 4px;
}

.learning-card h3 {
    color: #38b6ff; /* Cyan-blue from screenshot */
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.learning-card h2 {
    font-size: 21px;
    font-weight: 800;
    line-height: 1.3;
}

/* Phase Section */
.phase-section {
    text-align: center;
    padding-bottom: 30px;
    padding-top: 30px;
    position: relative;
    z-index: 1;
}

/* .phase-section:nth-of-type(even)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f9f9f9;
    z-index: -1;
} */

.enroll-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
}

/* .phase-section:nth-of-type(odd)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: -1;
} */



.phase-title {
    font-size: 28px;
    font-weight: 800;
    color: #020B26;
    line-height: 1.2;
    margin-bottom: 20px;
}
.phase-highlight {
    margin-bottom: 24px;
}
.phase-highlight .highlight-yellow {
    font-size: 18px;
    font-weight: 600;
    padding: 2px 0;
}
h3.category-title {
    text-align: left;
    margin-bottom: 10px;
}
/* Content Card */
.content-card {
    border: 2px solid #e1e1e1;
    border-radius: 12px;
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 30px;
}
.card-body {
    text-align: left;
}
.phase-text-content p {
    margin-bottom: 15px;
    color: #0f0f0f;
    font-size: 18px;
}
.phase-text-content {
    text-align: left;
}
.card-image {
    width: 100%;
    height: 180px;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 16px;
}
.phase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

/* Add a pseudo-element to look slightly more like the car image if desired, or keep simple */

.card-body h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #000;
}

.card-body p {
    font-size: 18px;
    line-height: 1.6;
    color: #0f0f0f;
    font-weight: 400;
}

.phase-content-text {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.5;
}

.phase-content-text:last-child {
    margin-bottom: 0;
}


/* Imagine Card Styles */
.imagine-card {
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 40px 35px;
    margin-top: 50px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.imagine-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    line-height: 1.25;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.imagine-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.imagine-list li {
    display: flex;
    align-items: center;
    font-size: 19px;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 500;
}

.imagine-list li i {
    color: #ff3b30; /* Vibrant red from image */
    font-size: 28px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
}

.imagine-footer {
    font-size: 21px;
    font-weight: 500;
    color: #000000;
    margin-top: 35px;
}

/* Category Items (Fashion, Wildlife, etc.) */
.category-item {
    margin-bottom: 20px;
    text-align: center;
}
.category-img {
    width: 100%;
    border-radius: 30px; 
    margin-bottom: 12px;
    display: block;
    aspect-ratio: 1 / 1.1; 
    object-fit: cover;
}

.thumbnail-img {
    width: 100%;
    border-radius: 30px;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}


.category-label {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-top: 10px;
}

/* --- Refactored Utility & Section Classes --- */

/* Decorative Divider */
.section-divider {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 40px 0;
}

/* Secondary Section Titles */
.section-subtitle {
    text-align: center;
    font-size: 21px;
    font-weight: 800;
    color: #000d22;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Pixar Character Section */
.pixar-charactor {
    text-align: center;
    margin-bottom: 40px;
}

.pixar-charactor h4 {
    font-size: 20px;
    color: #000d22;
    margin: 20px 0;
    font-weight: 700;
}

.pixar-charactor img {
    margin-bottom: 15px;
}

/* Enhanced Imagine Card Styles (No Inline CSS required) */
.imagine-card .card-image {
    height: auto;
    border-radius: 20px;
    margin-bottom: 25px;
    overflow: hidden;
}

/* Override or extend existing imagine-card styles if needed */
.imagine-card h3 {
    font-size: 22px !important;
    margin-bottom: 15px !important;
}

.imagine-card p {
    font-size: 18px;
    line-height: 1.4;
    color: #1a1a1a;
    font-weight: 400;
    text-align: left;
}
section.phase-section.no-radius .card-image{
    border-radius: 0;
}
section.phase-section.no-radius .card-image img{
    border-radius: 0;
}
/* --- Comment Card Styles --- */
.comment-card {
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 25px;
    padding: 20px 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    text-align: left;
}

.comment-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
}

.comment-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.comment-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-user-header {
    margin-bottom: 4px;
}

.comment-username {
    font-weight: 700;
    color: #333;
    font-size: 16px;
}

.comment-time {
    color: #777;
    font-size: 14px;
    margin-left: 8px;
}

.comment-text {
    font-size: 16px;
    line-height: 1.4;
    color: #1a1a1a;
    font-weight: 400;
}

.comment-preview-img {
    width: 70px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
}

/* --- Performance Card Extension --- */
.performance-card {
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 30px 10px;
    margin-top: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    text-align: left;
}

.performance-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.performance-card p {
    font-size: 19px;
    line-height: 1.4;
    color: #000;
    font-weight: 500;
}

/* --- Checklist Styles --- */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 19px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 500;
}

.check-list li i {
    color: #056ba5;
    font-size: 22px;
    margin-top: 3px;
    width: 25px;
    font-weight: bolder;
}

/* Helper classes to avoid inline styles */
.card-image-large {
    height: auto !important;
    margin-bottom: 25px !important;
}

.card-body-title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #000 !important;
    margin-bottom: 20px !important;
    margin-top: 20px;
}

/* --- Comparison Styles for Phase 6 --- */
.comparison-container {
    position: relative;
    margin-bottom: 25px;
    border-radius: 60px;
    overflow: hidden;
}

.comparison-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    color: #000000;
    padding: 5px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

/* Green Checklist Styles */
.check-list-green {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
}

.check-list-green li {
    display: flex;
    align-items: flex-start; /* Changed to match image */
    gap: 15px;
    font-size: 19px;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 25px; /* Increased separation */
    font-weight: 500;
}

.check-list-green li i {
    color: #28a745; /* Green color */
    font-size: 22px;
    margin-top: 4px; /* Align with first line of text */
    width: 25px;
    text-align: center;
}


/* --- Winter Sale Bonuses Styles --- */
.bonuses-section {
    position: relative;
    padding: 50px 0;
    text-align: center;
    overflow: visible; /* Allow ::before to breakout */
    margin-top: 50px;
}

.bonuses-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 430px;
    height: 100%;
    background: radial-gradient(circle at center, rgba(78, 190, 253, 0.15) 0%, rgba(0, 13, 34, 1) 70%);
    background-color: #000d22;
    z-index: -1;
    pointer-events: none;
}
.phase-section:nth-of-type(even)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 430px;
    height: 100%;
    background-color: #f9f9f9;
    z-index: -1;
    pointer-events: none;
}
.phase-section:nth-of-type(odd)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 430px;
    height: 100%;
    background-color: #fff;
    z-index: -1;
    pointer-events: none;
}
.instructor-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 430px;
    height: 100%;
    background-color: #fff;
    z-index: -1;
    pointer-events: none;
}
.faq-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 430px;
    height: 100%;
    background-color: #000c21;
    z-index: -1;
    pointer-events: none;
}
.bonuses-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.bonuses-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.bonuses-subtitle {
    font-size: 22px;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 50px;
    font-weight: 500;
}

.bonus-box-container {
    margin-bottom: 50px;
}

.bonus-box-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.bonus-card {
    text-align: left !important;
}

.bonus-card-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #000 !important;
    margin-bottom: 25px !important;
}

.bonus-spacer {
    margin-top: 80px !important;
}

/* --- Enroll Today Section Styles --- */
.enroll-section {
    text-align: center;
    padding-top: 30px;
    position: relative;
    z-index: 1;
}

.enroll-title {
    font-size: 28px;
    font-weight: 800;
    color: #001322;
    margin-bottom: 15px;
}

.pricing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.price-original {
    font-size: 42px;
    font-weight: 800;
    color: #cbd4e1;
    text-decoration: line-through;
    text-decoration-thickness: 5px;
}

.price-final {
    font-size: 52px;
    font-weight: 900;
    color: #000c21;
}

.bundle-img {
    max-width: 100%;
    margin-bottom: 50px;
}

.cta-box {
    background-color: #000c21;
    border: 3px solid #4ebefd;
    border-radius: 40px;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-box-title {
    font-size: 24px;
    font-weight: 900;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.btn-enroll-large {
    background-color: #0fb247;
    color: #ffffff;
    font-size: 21px;
    font-weight: 800;
    padding: 12px 40px;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(15, 178, 71, 0.4);
    transition: transform 0.2s, background-color 0.2s;
    width: 100%;
    max-width: 450px;
}

.btn-enroll-large:hover {
    background-color: #12c951;
    transform: translateY(-3px);
}

.guarantee-text {
    font-size: 19px;
    color: #1a1a1a;
    line-height: 1.5;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 400;
}

.guarantee-text strong {
    font-weight: 800;
}

/* --- Secure Checkout Section Styles --- */
.secure-checkout-section {
    padding: 20px 0 80px;
    text-align: center;
    background-color: #ffffff;
}

.secure-lock {
    font-size: 25px;
    color: #000000;
    margin-bottom: 25px;
}

.secure-checkout-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.payment-logo {
    height: 40px;
    object-fit: contain;
}

/* --- Student Testimonials Section Styles --- */
.students-saying-section {
    padding: 30px 0;
    text-align: center;
}

.students-saying-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #000;
    margin-top: 20px;
}

.fb-card-container {
    max-width: 550px;
    margin: 0 auto;
    text-align: left;
}

.fb-post-card {
    background: #ffffff;
    border: 1px solid #dddfe2;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    padding: 16px;
    font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
}

.fb-post-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    position: relative;
}

.fb-avatar-main img {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    object-fit: cover;
}

.fb-group-name {
    font-weight: 600;
    font-size: 15px;
    color: #050505;
}

.fb-meta-sub {
    font-size: 13px;
    color: #65676b;
    display: flex;
    align-items: center;
    gap: 5px;
}

.fb-contributor-badge {
    background-color: #f0f2f5;
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
}

.fb-more-options {
    position: absolute;
    right: 0;
    top: 0;
    color: #65676b;
    cursor: pointer;
}

.fb-post-content {
    font-size: 16px;
    line-height: 1.4;
    color: #050505;
    margin-bottom: 15px;
}

.fb-actions-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 10px;
    border-top: 1px solid #ced0d4;
    border-bottom: 1px solid #ced0d4;
    margin-bottom: 15px;
}

.fb-action {
    flex: 1;
    text-align: center;
    color: #65676b;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.fb-action i {
    margin-right: 6px;
}

.fb-stats-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.fb-reactions {
    display: flex;
    align-items: center;
}

.fb-reaction-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 10px;
    margin-right: -4px;
    border: 2px solid #ffffff;
}

.fb-reaction-icon.like { background-color: #1877f2; }
.fb-reaction-icon.heart { background-color: #fb3958; }

.fb-reaction-count {
    margin-left: 10px;
    font-size: 14px;
    color: #65676b;
}

.fb-relevance-selector {
    font-size: 14px;
    color: #65676b;
    font-weight: 600;
    margin-bottom: 15px;
}

.fb-comments-list {
    border-top: 1px solid #ced0d4;
    padding-top: 15px;
}

.fb-comment-item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.fb-comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.fb-comment-bubble {
    background-color: #f0f2f5;
    border-radius: 18px;
    padding: 8px 12px;
}

.fb-comment-user {
    font-weight: 600;
    font-size: 13px;
    color: #050505;
}

.fb-comment-text {
    font-size: 13px;
    color: #050505;
}

.fb-comment-actions {
    font-size: 12px;
    color: #65676b;
    margin-top: 4px;
    padding-left: 12px;
}

/* --- Instructor Section Styles --- */
.instructor-section {
    text-align: center;
    background-color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    padding: 30px 0;
    position: relative;
    z-index: 1;
}
/* .instructor-section:before{
    content: "";
position: absolute;
top: 0;
bottom: 0;
left: 50%;
width: 100vw;
transform: translateX(-50%);
background-color: #fff;
z-index: -1;
} */
.faq-section{
    position: relative;
    z-index: 1;
}
.instructor-title {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 40px;
}

.instructor-img {
    width: 100%;
    height: auto;
    border-radius: 60px;
    margin-bottom: 40px;
}

.instructor-text {
    font-size: 19px;
    line-height: 1.5;
    color: #1a1a1a;
    text-align: left;
    margin-bottom: 25px;
    font-weight: 400;
}

/* --- Is It For Me Section Styles --- */
.for-me-section {
    text-align: center;
    background-color: #ffffff;
}
.instructor-section ul{
    padding-left: 30px;
}
.card-dark-blue {
    background-color: #000c21;
    border: 2px solid #4ebefd;
    border-radius: 14px;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}
p.card-subtitle-white {
    color: #fff;
}
.card-title-blue {
    color: #4ebefd;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.card-subtitle-white {
    color: #ffffff;
    font-size: 19px;
    line-height: 1.4;
    margin-bottom: 30px;
    font-weight: 500;
}

.list-heading-white {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 25px;
}

.check-list-circle-green {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list-circle-green li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 18px;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 500;
}

.check-list-circle-green li i {
    color: #12c951; /* Green color */
    font-size: 20px;
    margin-top: 3px;
    width: 25px;
    text-align: center;
}

/* --- Shouldn't Join Section Styles --- */
.shouldnt-join-section {
    padding: 60px 0px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0);
}

.card-light-grey {
    background-color: rgba(255, 255, 255, 0);
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 10px;
}

.card-title-black {
    color: #1a1a1a;
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: center;
}

.check-list-circle-red {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list-circle-red li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 18px;
    line-height: 1.5;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 500;
}

.check-list-circle-red li i {
    color: #ef4444; /* Red color */
    font-size: 22px;
    margin-top: 2px;
    width: 25px;
    text-align: center;
}

.btn-cta-green {
    display: inline-block;
    background-color: #06a344;
    color: #ffffff;
    font-size: 21.6px;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(18, 201, 81, 0.3);
}

.btn-cta-green:hover {
    transform: scale(1.05);
    background-color: #0fb849;
    color: #ffffff;
}

/* --- FAQ Section Styles --- */

.faq-section {
    padding: 30px 20px;
    text-align: center;
    width: auto;
    position: relative;
}

.faq-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 50px;
    max-width: 100%;
}

.faq-accordion {
    max-width: 600px;
    margin: 0 auto;
}

.faq-item {
    background-color: #1a1a1a; /* Very dark background for items */
    border-radius: 12px;
    padding: 22px 25px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
}

.faq-item:hover {
    background-color: #252525;
}

.faq-question {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    flex: 1;
    padding-right: 20px;
}

.faq-plus {
    color: #ef4444; /* Red color matching image */
    font-size: 24px;
    font-weight: 800;
}

/* --- Satisfaction Guarantee Section Styles --- */
.guarantee-card-section {
    padding: 20px 0;
    text-align: center;
}

.card-light-blue {
    background-color: #e8f4fd;
    border-radius: 24px;
    padding: 50px 30px;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.guarantee-badge {
    width: 280px;
    height: auto;
    display: block;
    margin: 0 auto 40px auto;
}

.guarantee-heading {
    color: #000000;
    font-size: 20px;
    font-weight: 800;
}

.guarantee-text {
    font-size: 18px;
    line-height: 1.5;
    color: #1a1a1a;
    font-weight: 400;
    margin: 0;
}

/* --- Footer Styles --- */
footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 20px 70px 20px;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    max-width: 430px;
}

.footer-container {
    max-width: 600px;
    margin: 0 auto;
}

footer a {
    color: #4ebefd;
    text-decoration: underline;
}

footer p {
    margin-bottom: 25px;
}

.footer-copyright {
    font-size: 18px;
    margin-bottom: 30px;
}

.footer-disclaimer {
    color: #ffffff;
    font-size: 18px;
}




@media (max-width: 575px){
.faq-section {
    padding: 30px 20px;
    background-color: #000c21;
    text-align: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
}

/* --- Global Phase Arrow Styles --- */
.phase-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 0;
    position: relative;
    z-index: 100;
}

.phase-arrow i {
    font-size: 40px;
    color: #cbd4e1;
    transform: translateY(-100%);
    cursor: default;
    line-height: 1;
}   
.learning-preview-section .phase-arrow i{
    margin-top: 60px;
    transform: translateY(0%);
}
.phase-arrow.main i.fa-solid.fa-angles-down {
    margin-top: 70px;
}
.phase-arrow.custom i.fa-solid.fa-angles-down {
    margin-top: 30px;
}


