/* freeres skin — CSS VERBATIM from ielts-mock-test.html comp, scoped under body.galv-freeres. */


        body.galv-freeres {
            --bg-navy: #13217c;
            --primary-blue: #3b5bff;
            --cta-magenta: #cc00cc;
            --accent-blue: #e6ebff;
            --text-white: #fffdfe;
            --text-dark: #333;
            --text-gray: #808080;
            --success-green: #2d8a4e;
            --font-heading: 'Poppins', sans-serif;
            --font-body: 'Inter', sans-serif;
            --container-width: 1920px;
        }

        body.galv-freeres *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body.galv-freeres {
            font-family: var(--font-body);
            color: var(--text-dark);
            line-height: 1.5;
            background-color: #e6ebff;
        }

        body.galv-freeres h1, body.galv-freeres h2, body.galv-freeres h3, body.galv-freeres h4, body.galv-freeres h5, body.galv-freeres h6{
            font-family: var(--font-heading);
            font-weight: 600;
        }

        body.galv-freeres h2.section-title{
            font-size: 36px;
            line-height: 48px;
            color: var(--primary-blue);
            text-align: center;
            margin-bottom: 15px;
        }

        body.galv-freeres p.section-subtitle{
            font-family: var(--font-heading);
            font-size: 20px;
            line-height: 30px;
            text-align: center;
            font-weight: 500;
        }

        body.galv-freeres .container{
            width: 100%;
            max-width: var(--container-width);
            padding: 0 80px;
            margin: 0 auto;
        }

        body.galv-freeres section{
            display: flex;
            justify-content: center;
            padding: 60px 0;
        }

        body.galv-freeres .section-for-desktop{
            display: flex;
            justify-content: center;
            padding: 60px 0;
        }

        body.galv-freeres .text-center{
            text-align: center;
        }

        body.galv-freeres .cta-section{
            text-align: center;
            margin-top: 30px;
        }

        body.galv-freeres .cta-para{
            font-family: var(--font-heading);
            font-size: 22px;
            line-height: 30px;
            font-weight: 500;
            text-align: center;
            margin-bottom: 25px;
        }

        body.galv-freeres .breakdown{
            background-color: #fff;
            padding: 60px 0;
        }

        body.galv-freeres .breakdown-grid{
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        body.galv-freeres .breakdown-card{
            background: #eef2ff;
            border-radius: 24px;
            padding: 30px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            border: 2px solid transparent;
            transition: all 0.2s ease;
        }

        body.galv-freeres .breakdown-card:hover{
            border: 2px solid #aea0ff;
        }

        body.galv-freeres .breakdown-img-box{
            width: 100%;
            background: #fff;
            border-radius: 16px;
            padding: 10px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        body.galv-freeres .breakdown-img-box img{
            width: 100%;
            height: auto;
            border-radius: 8px;
            display: block;
        }

        body.galv-freeres .breakdown-label{
            font-family: var(--font-body);
            font-size: 18px;
            color: var(--text-dark);
            font-weight: 600;
        }

        body.galv-freeres .btn{
            display: inline-block;
            padding: 12px 32px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all .3s ease;
            border: none;
            font-family: var(--font-heading);
        }

        body.galv-freeres .btn-magenta{
            background-color: var(--cta-magenta);
            color: var(--text-white);
        }

        body.galv-freeres .btn-magenta:hover{
            background-color: #a600a6;
        }

        body.galv-freeres .btn-blue{
            background-color: var(--primary-blue);
            border-radius: 10px;
            font-size: 18px;
            color: var(--text-white);
        }

        body.galv-freeres .btn-blue:hover{
            background-color: #13217c;
        }

        body.galv-freeres .btn-ghost-blue{
            background-color: var(--primary-blue);
            color: var(--text-white);
            font-size: 18px;
        }

        body.galv-freeres .btn-ghost-blue:hover{
            background-color: #13217c;
        }

        body.galv-freeres section{
            padding: 0 0 0px;
        }

        body.galv-freeres .hero{
            background-color: var(--bg-navy);
            color: var(--text-white);
            padding: 60px 0 100px;
            position: relative;
            overflow: hidden;
        }

        body.galv-freeres .hero .container{
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 40px;
            align-items: center;
        }

        body.galv-freeres .hero-content, body.galv-freeres .hero-testimonial{
            min-width: 0;
        }

        body.galv-freeres .hero-content h1{
            font-size: 42px;
            line-height: 1.2;
            margin-bottom: 20px;
            overflow-wrap: break-word;
        }

        body.galv-freeres .hero-content p{
            font-family: var(--font-heading);
            font-weight: 500;
            font-size: 22px;
            line-height: 30px;
            margin-bottom: 20px;
            overflow-wrap: break-word;
        }

        body.galv-freeres .hero-features{
            list-style: none;
            margin-bottom: 30px;
        }

        body.galv-freeres .hero-feature-item{
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 18px;
            flex-wrap: nowrap;
        }

        body.galv-freeres .hero-feature-item svg{
            color: var(--success-green);
            flex-shrink: 0;
            margin-top: 3px;
        }

        body.galv-freeres .hero-testimonial{
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        body.galv-freeres .hero-img{
            width: 100%;
            max-width: 480px;
            height: auto;
            border-radius: 20px;
            object-fit: cover;
            display: block;
        }

        body.galv-freeres .stats-bar{
            background: var(--text-white);
            border-radius: 20px;
            padding: 50px 40px;
            display: grid;
            grid-template-columns: 1.2fr 0.5fr;
            align-items: center;
            gap: 30px;
            margin: -60px auto 0;
            max-width: 1062px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
            text-align: left;
            position: relative;
            z-index: 20;
        }

        body.galv-freeres .ambassador-content{
            flex: 1;
        }

        body.galv-freeres .ambassador-title{
            font-size: 24px;
            color: var(--text-dark);
            font-weight: 600;
            line-height: 48px;
            font-family: var(--font-heading);
        }

        body.galv-freeres .ambassador-title span{
            color: var(--cta-magenta);
        }

        body.galv-freeres .ambassador-subtitle{
            font-size: 20px;
            line-height: 30px;
            color: var(--text-dark);
        }

        body.galv-freeres .ambassador-logo-box{
            padding: 2px;
            display: flex;
            align-items: center;
        }

        body.galv-freeres .ambassador-img{
            max-height: 60px;
            width: auto;
            display: block;
        }

        body.galv-freeres .aces{
            background-color: #fff;
            padding: 60px 0;
            overflow: hidden;
        }

        body.galv-freeres .aces-carousel-container{
            width: 100%;
            overflow: hidden;
            margin-top: 30px;
            position: relative;
            padding: 20px 0;
        }


        body.galv-freeres .ace-card{
            background: var(--accent-blue);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            position: relative;
        }

        body.galv-freeres .ace-img{
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 20px;
            object-fit: cover;
            border: 3px solid #fecdec;
        }

        body.galv-freeres .ace-name{
            font-size: 20px;
            margin-bottom: 6px;
            font-weight: 600;
            color: var(--text-dark);
        }

        body.galv-freeres .ace-country{
            color: var(--cta-magenta);
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        body.galv-freeres .ace-score{
            font-size: 20px;
            font-weight: 600;
            color: var(--text-dark);
            background: #fff;
            padding: 10px 20px;
            border-radius: 12px;
            display: inline-block;
            border: 2px dashed var(--cta-magenta);
            width: fit-content;
        }

        body.galv-freeres .ace-score span{
            color: var(--cta-magenta);
        }

        body.galv-freeres .why-galvanize{
            background-color: var(--accent-blue);
            padding: 60px 0;
        }

        body.galv-freeres .features-grid{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        body.galv-freeres .feature-card{
            background: #fff;
            border-radius: 20px;
            padding: 30px 30px;
            text-align: center;
            transition: all .2s ease;
            border: 2px solid transparent;
        }

        body.galv-freeres .feature-card:hover{
            border: 2px solid #a0aeff;
        }

        body.galv-freeres .feature-icon-box{
            width: 96px;
            height: 96px;
            margin: 0 auto 24px;
            background: var(--accent-blue);
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        body.galv-freeres .feature-icon-box img{
            width: 64px;
            height: 64px;
            object-fit: contain;
        }

        body.galv-freeres .feature-card h3{
            font-size: 22px;
            color: var(--primary-blue);
            margin-bottom: 16px;
        }

        body.galv-freeres .feature-card p{
            font-size: 18px;
            color: #333;
            line-height: 29px;
        }

        body.galv-freeres .text-left{
            text-align: left;
        }

        body.galv-freeres .diagnostic{
            background-color: var(--accent-blue);
            padding: 60px 0;
        }

        body.galv-freeres .diagnostic-grid{
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 40px;
            align-items: flex-start;
        }

        body.galv-freeres .test-card{
            background: #fff;
            border-radius: 20px;
            padding: 30px;
            border: 1px solid #e6ebff;
            display: flex;
            flex-direction: column;
        }

        body.galv-freeres .test-card.blue{
            background: #fff;
        }

        body.galv-freeres .test-title{
            font-size: 22px;
            color: var(--primary-blue);
            margin-bottom: 8px;
            font-weight: 600;
        }

        body.galv-freeres .test-card p{
            font-size: 18px;
            color: #808080;
            margin-bottom: 20px;
        }

        body.galv-freeres .test-details{
            display: flex;
            gap: 30px;
            margin-bottom: 15px;
        }

        body.galv-freeres .detail-item{
            font-size: 18px;
            color: #333;
        }

        body.galv-freeres .detail-item strong{
            font-weight: 600;
        }

        body.galv-freeres .test-divider{
            border: 0;
            border-top: 1px solid #bdbdbd;
            margin: 0 0 20px;
            width: 100%;
        }

        body.galv-freeres .test-features{
            list-style: none;
            margin-bottom: 10px;
            flex-grow: 1;
        }

        body.galv-freeres .test-feature-item{
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 16px;
        }

        body.galv-freeres .test-feature-item svg{
            color: var(--success-green);
            flex-shrink: 0;
        }

        body.galv-freeres .test-button-container{
            text-align: center;
            margin-top: 20px;
        }

        body.galv-freeres .test-button-container .btn{
            width: 100%;
            box-sizing: border-box;
        }

        body.galv-freeres .accordion-item{
            background: #f5f7ff;
            border: 1px solid #c7d2fe;
            border-radius: 12px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: all .3s ease;
        }

        body.galv-freeres .accordion-header{
            padding: 16px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 500;
            font-size: 18px;
            color: #1e293b;
            user-select: none;
        }

        body.galv-freeres .accordion-icon{
            font-size: 20px;
            color: #333;
            transition: transform .3s ease;
        }

        body.galv-freeres .accordion-content{
            max-height: 0;
            overflow: hidden;
            transition: max-height .3s ease-out, padding .3s ease;
            background: #f5f7ff;
        }

        body.galv-freeres .accordion-item.active .accordion-content{
            max-height: 500px;
            padding: 0 20px 20px;
        }

        body.galv-freeres .accordion-list{
            list-style: none;
            padding: 0;
            margin: 0;
        }

        body.galv-freeres .accordion-list li{
            position: relative;
            padding-left: 20px;
            margin-bottom: 8px;
            font-size: 16px;
            color: #475569;
            line-height: 1.5;
        }

        body.galv-freeres .accordion-list li::before{
            content: "•";
            position: absolute;
            left: 0;
            color: #1e293b;
            font-weight: 600;
        }

        @media (max-width:1024px) {
            body.galv-freeres .container{
                padding: 0 40px;
            }

            body.galv-freeres .diagnostic-grid{
                grid-template-columns: 1fr;
                margin-top: 30px;
            }

            body.galv-freeres .hero .container{
                grid-template-columns: 1.1fr 1fr;
                gap: 30px;
            }

            body.galv-freeres .hero-content h1{
                font-size: 38px;
            }

            body.galv-freeres .hero-content p{
                font-size: 16px;
                margin-bottom: 20px;
            }

            body.galv-freeres .hero-feature-item{
                font-size: 16px;
                gap: 10px;
                margin-bottom: 20px;
            }

            body.galv-freeres .hero-features{
                margin-bottom: 30px;
            }

            body.galv-freeres .hero-img{
                max-width: 380px;
            }

            body.galv-freeres .features-grid{
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width:768px) {

            body.galv-freeres nav button, body.galv-freeres nav a{
                padding: 10px 14px;
            }

            body.galv-freeres .container{
                padding: 0 20px;
            }

            body.galv-freeres .btn-blue{
                font-size: 16px;
                line-height: 26px;
            }

            body.galv-freeres .btn-ghost-blue{
                font-size: 16px;
                line-height: 26px;
            }

            body.galv-freeres .aces, body.galv-freeres .why-galvanize, body.galv-freeres .testimonials-video, body.galv-freeres .diagnostic{
                padding: 40px 0;
            }

            body.galv-freeres h2.section-title{
                font-size: 24px;
                line-height: 38px;
                margin-bottom: 10px;
            }

            body.galv-freeres p.section-subtitle{
                font-size: 18px;
                line-height: 29px;
            }

            body.galv-freeres .hero{
                padding: 40px 0 230px;
            }

            body.galv-freeres .hero .container{
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: left;
                padding: 0 20px;
            }

            body.galv-freeres .hero-content h1{
                font-size: 36px;
                line-height: 42px;
                text-align: left;
                width: 100%;
                overflow-wrap: break-word;
                word-break: break-word;
                white-space: normal !important;
            }

            body.galv-freeres .hero-content p{
                font-size: 20px;
                margin-bottom: 20px;
            }

            body.galv-freeres .hero-feature-item{
                font-size: 16px;
                margin-bottom: 20px;
            }

            body.galv-freeres .hero-testimonial{
                width: 100%;
                justify-content: center;
            }

            body.galv-freeres .hero-img{
                max-width: 100%;
                border-radius: 12px;
            }


            body.galv-freeres .ace-name{
                font-size: 18px;
                line-height: 29px;
            }

            body.galv-freeres .ace-country{
                font-size: 16px;
                line-height: 26px;
            }

            body.galv-freeres .stats-bar{
                grid-template-columns: 1fr;
                justify-items: center;
                text-align: center;
                padding: 30px 20px;
                margin-top: -150px;
            }

            body.galv-freeres .ambassador-title{
                font-size: 20px;
                line-height: 1.4;
            }

            body.galv-freeres .ambassador-subtitle{
                font-size: 16px;
            }

            body.galv-freeres .ambassador-logo-box{
                justify-content: center;
            }

            body.galv-freeres .ambassador-img{
                max-height: 50px;
            }

            body.galv-freeres .feature-card h3{
                font-size: 20px;
            }

            body.galv-freeres .feature-card p{
                font-size: 18px;
            }

            body.galv-freeres .features-grid{
                grid-template-columns: 1fr;
            }

            body.galv-freeres .breakdown{
                padding: 40px 0;
            }

            body.galv-freeres .breakdown-grid{
                grid-template-columns: 1fr;
            }

            body.galv-freeres .breakdown-card{
                padding: 20px;
            }

        }

        @media (max-width:350px) {
            body.galv-freeres .ambassador-img{
                max-height: 40px;
            }
        }
        
/* ===== CONTACT FORM ===== */
body.galv-freeres .contact-form{
    padding: 60px 0;
    background-color: var(--bg-navy);
}

body.galv-freeres .contact-form-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

body.galv-freeres .contact-form-left{
    display: flex;
    align-items: center;
    justify-content: center;
}

body.galv-freeres .contact-form-left img{
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

body.galv-freeres .contact-form-right{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ===== FAQ SECTION ===== */
body.galv-freeres .faq-section{
    background: #fffdfe;
    padding: 60px 0;
}

body.galv-freeres .faq-layout{
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 30px;
    align-items: start;
}

body.galv-freeres .faq-image-col img{
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 20px;
    display: block;
}

body.galv-freeres .faq-container{
    max-width: 100%;
    margin: 0;
    padding: 0;
}

body.galv-freeres .faq-title{
    font-family: var(--font-heading);
    font-size: 36px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

body.galv-freeres .faq-item{
    background: var(--primary-blue);
    margin-bottom: 18px;
    overflow: hidden;
    border-radius: 8px;
}

body.galv-freeres .faq-question{
    padding: 20px 50px 20px 20px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--text-white);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    user-select: none;
    font-family: var(--font-body);
}

body.galv-freeres .faq-question::after{
    content: "›";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 28px;
    color: #fff;
    font-weight: 400;
    transition: transform 0.3s ease;
    line-height: 1;
}

body.galv-freeres .faq-question.active::after{
    transform: translateY(-50%) rotate(90deg);
}

body.galv-freeres .faq-answer{
    background-color: var(--accent-blue);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 400;
    color: var(--primary-blue);
    font-family: var(--font-body);
}

body.galv-freeres .faq-answer.active{
    max-height: 800px;
    padding: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    body.galv-freeres .contact-form-wrapper{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body.galv-freeres .faq-layout{
        grid-template-columns: 1fr;
    }

    body.galv-freeres .faq-title{
        font-size: 24px;
    }

    body.galv-freeres .faq-image-col{
        display: none;
    }

    body.galv-freeres .faq-question{
        font-size: 16px;
    }

    body.galv-freeres .faq-answer{
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    body.galv-freeres .faq-title{
        font-size: 22px;
    }
}

    