* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        html {
            width: 100%;
            background-color: #ffffff;
        }

        body {
            width: 100%;
            background-color: #ffffff;
        }

        .full-page-process {
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            background: linear-gradient(rgba(13, 27, 49, 0.88), rgba(13, 27, 49, 0.88)), 
                        url('796fbb191bc6a0066ee13f2c668197a9d41145fa.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed; 
            padding: 80px 20px;
        }

/* ======== Compact Timeline Section Styles ========= */
.full-page-process {
    padding: 50px 0 !important; 
}

.header-section {
    margin-bottom: 38px !important; 
}

.header-section .title {
    font-size: 34px !important; 
    margin-bottom: 8px !important;
}

.timeline-item {
    padding-bottom: 30px !important; 
}

.content-card {
    padding: 16px 20px !important; 
    max-width: 360px !important;    
}

.card-info h3 {
    font-size: 15.5px !important; 
    margin-bottom: 4px !important;
}

.card-info p {
    font-size: 12.5px !important; 
}

.number-badge {
    top: 10px !important; 
}

        .header-section {
            text-align: center;
            margin-bottom: 70px;
            z-index: 2;
        }

        .subtitle {
            color: #e51d24;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 600;
            margin-bottom: 12px;
            display: inline-block;
            position: relative;
        }

        .subtitle::before, .subtitle::after {
            content: "";
            position: absolute;
            top: 50%;
            width: 16px;
            height: 2px;
            background-color: #e51d24;
            transform: translateY(-50%);
        }
        .subtitle::before { left: -28px; }
        .subtitle::after { right: -28px; }

        .title {
            font-size: 42px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 18px;
            letter-spacing: 0.5px;
        }

        .title span {
            color: #e51d24;
        }

        .description {
            color: #2a2a2b;
            max-width: 620px;
            margin: 0 auto;
            font-size: 15px;
            line-height: 1.6;
        }

        .timeline-container {
            position: relative;
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background-color: #e51d24;
            transform: translateX(-50%);
            z-index: 1;
        }

        .timeline-item {
            display: flex;
            position: relative;
            width: 50%;
            padding-bottom: 45px;
        }

        .timeline-item.left {
            left: 0;
            padding-right: 45px;
            justify-content: flex-end;
        }

        .timeline-item.right {
            left: 50%;
            padding-left: 45px;
            justify-content: flex-start;
        }

/* ======== Timeline Cards Hover Effect ======== */
.content-card {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.icon-box {
    transition: background-color 0.3s ease, border-color 0.3s ease !important;
}

.icon-box svg {
    transition: stroke 0.3s ease !important;
}

.timeline-item:hover .content-card {
    border-color: #e51d24 !important;
    box-shadow: 0 4px 20px rgba(229, 29, 36, 0.15);
    transform: translateY(-2px); 
}

.timeline-item:hover .icon-box {
    background-color: #e51d24 !important; 
    border-color: #e51d24 !important;
}

.timeline-item:hover .icon-box svg {
    stroke: #ffffff !important; 
}

.header-section .title,
.header-section .title span {
    font-family: 'Lora', 'Georgia', serif !important;
    font-weight: 700 !important; 
}

        .number-badge {
            position: absolute;
            top: 22px;
            width: 32px;
            height: 32px;
            background-color: #e51d24;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
            color: #ffffff;
            z-index: 3;
            box-shadow: 0 0 12px rgba(229, 29, 36, 0.4);
        }

        .left .number-badge { right: -16px; }
        .right .number-badge { left: -16px; }

        .content-card {
            background-color: rgba(7, 19, 36, 0.82);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 12px;
            padding: 24px;
            width: 100%;
            max-width: 400px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            z-index: 2;
        }

        /* Icon Container within Cards */
        .icon-box {
            background-color: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.12);
            padding: 11px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 46px;
            height: 46px;
        }

        .icon-box svg {
            width: 22px;
            height: 22px;
            fill: none;
            stroke: #94a3b8;
            stroke-width: 2;
        }

        .card-info h3 {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 7px;
            color: #ffffff;
        }

        .card-info p {
            font-size: 13.5px;
            color: #94a3b8;
            line-height: 1.55;
        }

        /* Full Responsive Adaptations for Mobile screens */
        @media (max-width: 768px) {
            .full-page-process { background-attachment: scroll; }
            .title {
                font-size: 32px;
            }
            .timeline-line {
                left: 20px;
                transform: none;
            }
            .timeline-item {
                width: 100%;
                left: 0 !important;
                padding-left: 55px !important;
                padding-right: 0 !important;
                justify-content: flex-start !important;
            }
            .left .number-badge, .right .number-badge {
                left: 6px;
                right: auto;
            }
            .content-card {
                max-width: 100%;
            }
        }

/* ======== Testimonials Section ======== */
.testimonials-section {
    position: relative !important;
    overflow: hidden !important; 
    padding-bottom: 140px !important; 
}

.testimonials-section {
    position: relative !important;
    margin-top: -40px !important; 
    background-color: #e6e7e8 !important;
    padding: 60px 80px 30px 80px !important; 
    width: 100% !important;
    overflow: visible !important; 
}

.testimonials-section::after {
    content: "" !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 15vh !important; 
    
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,40 Q720,0 1440,40 Z'%3E%3C/path%3E%3C/svg%3E") !important;
    background-size: 100% 100% !important;
    background-repeat: no-repeat !important;
    background-position: bottom center !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.testimonials-section .navigation-row {
    position: relative !important;
    z-index: 5 !important;
    margin-top: 10px !important; 
    margin-bottom: 0 !important;
}

.testimonials-section .header-area,
.testimonials-section .cards-grid,
.testimonials-section .navigation-row {
    position: relative !important;
    z-index: 5 !important;
}

.testimonials-section .header-area {
    text-align: center;
    margin-bottom: 35px;
}

.testimonials-section .title,
.testimonials-section .title span {
    font-family: 'Lora', 'Georgia', serif !important;
    font-weight: 700 !important;
}

.testimonials-section .subtitle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important; 
}

.testimonials-section .subtitle::before,
.testimonials-section .subtitle::after {
    content: "" !important;
    display: inline-block !important;
    width: 24px !important; 
    height: 2px !important;  
    background-color: #e51d24 !important;
}

.testimonials-section .title {
    font-size: 40px;
    font-weight: 700;
    color: hsl(0, 6%, 3%);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.testimonials-section .title span { color: #e51d24; }
.testimonials-section .description {
    color: #300336;
    max-width: 620px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.6;
}
.cards-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important; 
    justify-content: center !important;
    align-items: stretch !important;
    gap: 32px !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto 40px auto !important; 
}
.testimonials-section .testimonial-card {

    background-color: #ffffff !important;
    border: 1px solid #eef2f6 !important; 
    border-radius: 15px !important; 
    padding: 32px 28px !important;  
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04) !important;
    
    flex: 1 1 calc(33.333% - 22px) !important; 
    min-width: 260px !important;   
    max-width: 340px !important;    
    min-height: 320px !important;   
    
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;


    background-color: #ffffff !important;
    border: 1px solid #dbe1e8 !important; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important; 
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;

}

.testimonials-section .navigation-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 1200px !important;
    clear: both !important;        
    margin-top: 20px !important;  
    margin-bottom: 20px !important;   

}

.testimonials-section .testimonial-card:hover {
    transform: translateY(-5px) !important;
    border: 2.8px solid #f5c7c6 !important; 
    padding: 30.5px 26.5px !important; 
    box-shadow: 0 15px 35px rgba(252, 218, 217, 0.45) !important; 
}

.testimonials-section .stars-container {
    color: #e51d24;
    font-size: 15px;
    margin-bottom: 16px;
    letter-spacing: 3px;
}
.testimonials-section .review-text {
    color: #334155;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}
.testimonials-section .card-divider {
    height: 1px;
    background-color: #f1f5f9;
    width: 100%;
    margin-bottom: 16px;
    border: none;
}
.testimonials-section .profile-container {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonials-section .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonials-section .user-details h4 {
    color: #0f172a;
    font-size: 14.5px;
    font-weight: 700;
    margin-bottom: 2px;
}
.testimonials-section .user-details p {
    color: #e51d24;
    font-size: 12.5px;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .testimonials-section {
        margin-top: 60px !important;
        padding: 60px 40px 140px 40px !important;
    }
    .testimonials-section::after {
        height: 80px !important; 
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        margin-top: 40px !important;
        padding: 40px 20px 0px 20px !important;
    }
    .testimonials-section::after {
        height: 50px !important; 
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 24px !important; 
    }
    .testimonials-section .testimonial-card { 
        flex: 0 0 100% !important; 
    }
    .testimonials-section .arrow-btn {
        width: 42px;
        height: 42px;
    }
}
        
 .testimonials-section .navigation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin-top: 40px;
}

.testimonials-section .arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: none;
}


.testimonials-section .arrow-btn.back {
    background-color: #fcdad9;
    border: 1px solid #e51d24;
}
.testimonials-section .arrow-btn.back:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.testimonials-section .arrow-btn.next {
    background-color: #fcdad9;
    border: 1px solid #e51d24;
}

.testimonials-section .arrow-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #e51d24;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.testimonials-section .arrow-btn.back svg {
    stroke: #8f3a3a;
}

.testimonials-section .pagination-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonials-section .page-num {
    width: 40px !important;
    height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.2s ease !important;
    background-color: #ffffff !important;
    color: #334155 !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02) !important;
}

.testimonials-section .page-num.active {
    background-color: #fcdad9 !important; 
    border: 1px solid #e51d24 !important;   
    color: #e51d24 !important;               
}

.testimonials-section .page-num:not(.active):hover {
    border-color: #e51d24 !important;
    background-color: #fcdad9 !important;
}

.testimonials-section .page-dots {
    color: #64748b !important;
    font-weight: 600 !important;
    padding: 0 4px !important;
}
       

/* ======= FAQ Section ======= */
.faq-section {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 80px; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background-color: #ffffff;
}

.faq-content {
    flex: 1.2; 
    max-width: 580px;
}

.faq-content .subtitle {
    color: #e51d24 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    
    display: flex !important;
    align-items: center !important;
    gap: 10px !important; 
    position: static !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    width: max-content !important;
    margin-bottom: 12px !important;
}

.faq-content .subtitle::before {
    content: '' !important;
    position: static !important; 
    transform: none !important;
    width: 20px !important; 
    height: 2px !important; 
    background-color: #e51d24 !important;
    display: inline-block !important;
}

.faq-content h2,
.faq-content h2 span {
    font-family: 'Lora', 'Georgia', serif !important;
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.faq-content h2 span {
    color: #e51d24;
}

.faq-content > p {
    color: #64748B;
    font-size: 14.5px;
    font-weight: 500;
    margin-bottom: 28px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid #cbd5e1; 
    border-radius: 12px;
    overflow: hidden;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #e51d24;
    background-color: #fffafb; 
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.faq-question .q-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-question .q-icon {
    width: 18px; 
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid #64748b; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;             
    color: #64748b;             
    flex-shrink: 0;
}

.faq-item.active .q-icon {
    border-color: #e51d24;
    color: #e51d24;
}

.faq-question .chevron {
    transition: transform 0.3s ease;
    color: #64748b;
    font-size: 13px;
    flex-shrink: 0;
}

.faq-item.active .chevron {
    transform: rotate(180deg);
    color: #e51d24;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 4px 20px 20px 50px;
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-answer p { padding: 4px 10px 12px 10px; }
}

.faq-illustration {
    flex: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 440px; 
}

.faq-illustration img {
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 90%;
}

@media (max-width: 1024px) {
    .faq-section {
        padding: 60px 40px;
        gap: 40px;
        flex-direction: column;
    }
    .faq-content, .faq-illustration {
        max-width: 100%;
        width: 100%;
    }
    .faq-illustration {
        order: 2; 
    }
}

/* ======== Visit Our Office Section ======= */
.office-section {
    width: 100%;
    background-color: var(--navy-dark-blue);
    padding: 60px 20px;
}

.office-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 60px;
}

.office-map-wrapper {
    flex: 1.2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    align-self: stretch;
}
.office-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.office-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.office-info .subtitle {
    color: var(--brand-red) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    position: static !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    width: max-content !important;
    margin-bottom: 14px !important;
}

.office-info .subtitle::before {
    content: '' !important;
    position: static !important; 
    transform: none !important;
    width: 20px !important; 
    height: 2px !important; 
    background-color: var(--brand-red) !important;
    display: inline-block !important;
}

.office-info h2 {
    font-family: 'Lora', 'Georgia', serif !important;
    font-size: 34px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 14px !important;
    line-height: 1.2 !important;
}

.office-info h2 span {
    font-family: 'Lora', 'Georgia', serif !important;
    color: var(--brand-red) !important;
}

.office-info > p {
    color: #94a3b8;
    font-size: 14.5px;
    font-weight: 500;
    margin-bottom: 30px;
    max-width: 400px;
}

.office-cards {
    display: flex;
    flex-direction: column;
    gap: 12px; 
    max-width: 420px; 
}

.office-card {
    background-color: #ffffff !important;
    border-radius: 12px !important;
    padding: 12px 16px !important; 
    display: flex !important;
    align-items: center !important; 
    gap: 14px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.office-card-icon {
    width: 36px !important;
    height: 36px !important;
    background-color: #fee2e2 !important;
    color: var(--brand-red) !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 15px !important;
    flex-shrink: 0 !important;
}

.office-card-text h3 {
    font-size: 14.5px !important;
    font-weight: 700 !important;
    color: var(--brand-blue) !important;
    margin-bottom: 2px !important;
}

.office-card-text p {
    font-size: 12.5px !important; 
    color: #64748B !important;
    line-height: 1.4 !important;
}

@media (max-width: 768px) {
    .office-container {
        flex-direction: column;
    }
    .office-map-wrapper {
        width: 100%;
        min-height: 350px;
    }
    .office-info > p {
        max-width: 100%;
    }
    .office-cards {
        max-width: 100%;
    }
}

/* ======== Book Free Session Section ======= */
.booking-cta-section {
    max-width: 1100px;
    width: 92%;
    margin: 60px auto;
}

.booking-cta-card {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border: 1px solid var(--brand-red);
    position: relative;
}

.booking-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ef4444, #b91c1c, #78350f, #d97706);
    z-index: 3;
}

/* ====== Lora Font Header Update ===== */

.booking-cta-left h2 {
    font-family: 'Lora', 'Georgia', serif !important;
    font-size: 36px; 
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
}

.booking-cta-left h2 .highlight {
    font-family: 'Lora', 'Georgia', serif !important;
    display: block; 
    color: var(--brand-red); 
}

.booking-cta-left {
    flex: 1;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 45px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-cta-left h2 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}

.booking-cta-left h2 .highlight {
    color: var(--brand-red);
    display: block;
}

.booking-cta-left > p {
    color: #cbd5e1;
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.booking-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: #e2e8f0;
}

.booking-benefits li i {
    color: var(--brand-red);
    font-size: 13px;
    margin-top: 3px;
    flex-shrink: 0;
}

.booking-cta-right {
    flex: 1.15;
    background-color: #ffffff;
    padding: 40px 45px;
}

.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
    margin-bottom: 18px;
}

.booking-form-group {
    display: flex;
    flex-direction: column;
}

.booking-form-group.full-width {
    grid-column: 1 / -1;
}

.booking-form-group label {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 8px;
}

.booking-form-group input,
.booking-form-group select,
.booking-form-group textarea {
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    border-radius: 8px;
    font-size: 13.5px;
    color: var(--text-dark);
    outline: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.2s ease;
}

.booking-form-group input:focus,
.booking-form-group select:focus,
.booking-form-group textarea:focus {
    border-color: #94a3b8;
    background-color: #ffffff;
}

.booking-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.booking-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    cursor: pointer;
}

.booking-submit-btn {
    width: 100%;
    background-color: var(--brand-red);
    color: #ffffff;
    border: none;
    padding: 15px;
    font-size: 14.5px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.2s ease;
}

.booking-submit-btn:hover {
    background-color: #a71212;
}

@media (max-width: 768px) {
    .booking-cta-card {
        flex-direction: column;
    }
    .booking-form-grid {
        grid-template-columns: 1fr;
    }
    .faq-section { padding: 40px 20px; }
}

@media (max-width: 480px) {
    .full-page-process {
        padding: 32px 16px !important;
    }

    .header-section .title {
        font-size: 26px !important;
    }

    .header-section .subtitle {
        font-size: 12px !important;
    }

    .timeline-item {
        padding-bottom: 20px !important;
    }

    .content-card {
        padding: 14px 16px !important;
        max-width: 300px !important;
    }

    .card-info h3 {
        font-size: 14px !important;
    }

    .card-info p {
        font-size: 11.5px !important;
    }

    .testimonials-section {
        padding: 32px 16px 60px 16px !important;
    }

    .testimonials-section .title {
        font-size: 26px;
    }

    .testimonials-section .testimonial-card {
        flex: 0 0 100% !important;
        padding: 24px 20px !important;
        min-height: 280px !important;
    }

    .testimonials-section .review-text {
        font-size: 13px;
    }

    .testimonials-section .user-details h4 {
        font-size: 13px;
    }

    .testimonials-section .user-details p {
        font-size: 11px;
    }

    .faq-section {
        padding: 32px 16px;
        gap: 32px;
    }

    .faq-content h2 {
        font-size: 24px;
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 13px;
    }

    .faq-answer p {
        font-size: 13px;
        padding: 4px 16px 16px 16px;
    }

    .office-section {
        padding: 40px 16px;
    }

    .office-container {
        gap: 32px;
    }

    .office-info h2 {
        font-size: 26px !important;
    }

    .office-info > p {
        font-size: 13px;
    }

    .office-card {
        padding: 10px 14px !important;
    }

    .office-card-text h3 {
        font-size: 13px !important;
    }

    .office-card-text p {
        font-size: 11px !important;
    }

    .booking-cta-left {
        padding: 32px 24px;
    }

    .booking-cta-left h2 {
        font-size: 22px;
    }

    .booking-cta-right {
        padding: 32px 24px;
    }

    .booking-form-group label {
        font-size: 12px;
    }

    .booking-form-group input,
    .booking-form-group select,
    .booking-form-group textarea {
        padding: 10px 12px;
        font-size: 12px;
    }

    .booking-submit-btn {
        padding: 12px;
        font-size: 13px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: auto;
    }
    .services-grid .student-counseling {
        grid-column: span 2;
        grid-row: span 1;
        height: 320px;
    }
    .services-grid .pre-departure {
        grid-column: span 2;
    }
    .service-card { padding: 20px; }
    .service-card h3 { font-size: 17px; }
    .service-card p { font-size: 12px; }

    .wcu-body-layout {
        flex-direction: column;
        gap: 30px;
    }
    .wcu-main-image { max-height: 260px; }
    .wcu-bg-shape { height: 80%; }
    .wcu-feature-item { padding: 12px 16px; gap: 14px; }
    .wcu-feature-item .feature-icon { width: 32px; height: 32px; font-size: 14px; }
    .wcu-feature-item h4 { font-size: 13px; }
    .wcu-feature-item p { font-size: 11px; }

    .network-card-container {
        flex-direction: column;
        padding: 24px;
        gap: 24px;
    }
    .network-info { text-align: center; align-items: center; }
    .network-badge { position: static; transform: none; margin-top: 12px; }

    .destinations-grid .large-card {
        height: 380px;
    }
    .medium-card { height: 200px; }
    .wide-card { height: 200px; }
    .destination-card { padding: 20px; }
    .destination-card h3 { font-size: 18px; }
    .destination-card p { font-size: 12px; }

    .test-prep-section .prep-grid {
        flex-direction: column;
    }
    .test-prep-section .prep-card {
        flex-direction: column;
    }
    .test-prep-section .prep-img-wrapper {
        flex: none;
        min-height: 200px;
        max-height: 220px;
    }
    .test-prep-section .prep-content {
        padding: 24px;
    }
    .test-prep-section .prep-title-row h3 { font-size: 20px; }
    .test-prep-section .prep-desc { font-size: 12px; }
    .test-prep-section .prep-features-list li { font-size: 11px; }
    .test-prep-section .enroll-btn { font-size: 12px; padding: 8px 16px; }

    .appointment-card { padding: 20px; }
    .card-header-row { gap: 16px; margin-bottom: 16px; }
    .calendar-icon-container { width: 48px; height: 48px; font-size: 22px; }
    .card-text h3 { font-size: 18px; }
    .card-text p { font-size: 12px; }
    .status-badge { font-size: 11px; padding: 4px 10px; }
    .metric-item { font-size: 11px; }
    .metric-item .metric-number { font-size: 16px; }

    .uni-marquee-section { min-height: 160px; padding: 10px 0; }
    .marquee-item { height: 110px !important; width: 180px !important; }
    .marquee-item.leeds-frame { height: 90px !important; width: 170px !important; }

    .page2-wrapper { padding: 30px 16px; gap: 30px; }
    .section-divider, .section-divider1 { margin: 10px auto; width: 90%; }
}

@media (max-width: 400px) {
    .full-page-process {
        padding: 28px 12px !important;
    }

    .header-section .title {
        font-size: 22px !important;
    }

    .header-section .subtitle {
        font-size: 11px !important;
        letter-spacing: 2px;
    }

    .content-card {
        padding: 12px 14px !important;
        max-width: 260px !important;
        gap: 12px;
    }

    .icon-box {
        padding: 8px;
        min-width: 38px;
        height: 38px;
    }

    .icon-box svg {
        width: 18px;
        height: 18px;
    }

    .card-info h3 {
        font-size: 13px !important;
        margin-bottom: 3px !important;
    }

    .card-info p {
        font-size: 11px !important;
    }

    .number-badge {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .testimonials-section {
        padding: 24px 12px 50px 12px !important;
    }

    .testimonials-section .title {
        font-size: 22px;
    }

    .testimonials-section .subtitle {
        font-size: 11px !important;
    }

    .testimonials-section .description {
        font-size: 13px;
    }

    .testimonials-section .testimonial-card {
        padding: 20px 16px !important;
        min-height: 240px !important;
    }

    .testimonials-section .stars-container {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .testimonials-section .review-text {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .testimonials-section .user-details h4 {
        font-size: 12px;
    }

    .testimonials-section .user-details p {
        font-size: 10px;
    }

    .testimonials-section .arrow-btn {
        width: 36px;
        height: 36px;
    }

    .faq-section {
        padding: 24px 12px;
        gap: 24px;
    }

    .faq-content h2 {
        font-size: 20px;
    }

    .faq-content > p {
        font-size: 13px;
    }

    .faq-question {
        padding: 12px 14px;
        font-size: 12px;
    }

    .faq-question .q-icon {
        width: 16px;
        height: 16px;
        font-size: 8px;
    }

    .faq-answer p {
        font-size: 12px;
        padding: 4px 14px 14px 14px;
    }

    .office-section {
        padding: 32px 12px;
    }

    .office-info h2 {
        font-size: 22px !important;
    }

    .office-info > p {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .office-card {
        padding: 10px 12px !important;
        gap: 10px;
    }

    .office-card-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 13px !important;
    }

    .office-card-text h3 {
        font-size: 12px !important;
    }

    .office-card-text p {
        font-size: 10px !important;
    }

    .booking-cta-left {
        padding: 24px 16px;
    }

    .booking-cta-left h2 {
        font-size: 20px;
    }

    .booking-cta-left > p {
        font-size: 12px;
    }

    .booking-benefits li {
        font-size: 12px;
    }

    .booking-cta-right {
        padding: 24px 16px;
    }

    .booking-form-grid {
        gap: 14px;
    }

    .booking-form-group label {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .booking-form-group input,
    .booking-form-group select,
    .booking-form-group textarea {
        padding: 9px 10px;
        font-size: 11px;
    }

    .booking-submit-btn {
        padding: 11px;
        font-size: 12px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    .services-grid .student-counseling {
        grid-column: span 1;
        height: 260px;
    }
    .services-grid .pre-departure {
        grid-column: span 1;
    }
    .service-card { padding: 16px; }
    .service-card h3 { font-size: 15px; }
    .service-card p { font-size: 11px; }

    .destinations-grid .large-card { height: 300px; }
    .medium-card { height: 170px; }
    .wide-card { height: 170px; }
    .destination-card { padding: 16px; }
    .destination-card h3 { font-size: 16px; }
    .country-tag { font-size: 10px; padding: 3px 8px; }
    .destinations-header h2 { font-size: 24px; }
    .destinations-header p { font-size: 12px; }

    .wcu-header h2 { font-size: 22px; }
    .wcu-description { font-size: 13px; }
    .wcu-main-image { max-height: 200px; }
    .wcu-feature-item { padding: 10px 14px; gap: 12px; }
    .wcu-btn { font-size: 12px; padding: 8px 16px; }

    .network-card-container { padding: 16px; gap: 16px; border-radius: 16px; }
    .network-header h2 { font-size: 22px; margin-bottom: 16px; }
    .network-description { font-size: 12px; margin-bottom: 12px; }
    .network-img-box { height: 200px; }
    .network-badge { padding: 8px 14px; font-size: 11px; gap: 8px; border-radius: 8px; }

    .test-prep-section .prep-img-wrapper { min-height: 160px; max-height: 180px; }
    .test-prep-section .prep-content { padding: 16px; }
    .test-prep-section .prep-title-row h3 { font-size: 18px; }
    .test-prep-section .target-badge { font-size: 10px; padding: 3px 8px; }
    .test-prep-section .prep-desc { font-size: 11px; }
    .test-prep-section .prep-features-list li { font-size: 10px; padding: 3px 0; }
    .test-prep-section .enroll-btn { font-size: 11px; padding: 6px 14px; }
    .test-prep-section .prep-header h2 { font-size: 24px; }

    .appointment-card { padding: 16px; }
    .calendar-icon-container { width: 40px; height: 40px; font-size: 18px; border-radius: 8px; }
    .card-text h3 { font-size: 16px; }
    .card-text p { font-size: 11px; }
    .form-input-group input { font-size: 11px; padding: 8px 10px; }
    .form-submit-btn { font-size: 12px; padding: 8px 14px; }

    .stat-item { padding: 8px 0; }
    .stat-icon { width: 48px; height: 48px; font-size: 20px; margin-bottom: 10px; }
    .stat-number { font-size: 22px; }
    .stat-label { font-size: 11px; }
    .stats-container { gap: 8px; }
    .stats-section { min-height: 180px; }

    .process-container { gap: 16px; }
    .process-section { padding: 20px 12px !important; }
    .diagram-container { zoom: 0.55; }

    .why-choose-us { padding: 0 12px; }
    .our-network { padding: 0 12px; margin-bottom: -15px; }
    .destinations-section { padding: 0 12px; }
    .test-prep-section { padding: 0 12px; margin-top: -20px; }
}
