
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --primary-orange: #FF5F15;
        --secondary-orange: #FFA802;
        --gradient-primary: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
        --bg-dark: #0d163e;
        --text-light: #ffffff;
        --transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
    }

    body {
        font-family: 'DM Sans', sans-serif;
        line-height: 1.6;
        background: var(--bg-dark);
        color: var(--text-light);
        scroll-behavior: smooth;
        overflow-x: hidden;
    }


    .container-fluid {
        max-width: 1850px;
    }

    /* Hero Section Base - Matched Height */
    .hero-section {
        position: relative;
        min-height: 75vh;
        display: flex;
        padding: clamp(80px, 15vw, 100px) 0 clamp(60px, 12vw, 70px) !important;
        align-items: center;
        overflow: hidden;
        margin-top: 5rem;
        background: linear-gradient(135deg, #0a0f2c 0%, #1a1f3a 50%, #0a0f2c 100%);
        border-bottom: 4px solid var(--primary-orange);
        border-radius: 0 0 30px 30px;
    }

    /* Desktop padding fix for consistency */
    @media (min-width: 1200px) and (max-width: 1900px) {
        .hero-section {
            padding: 85px 25px !important;
        }
    }


    /* Hero Content Wrapper - Matched Structure */
    .hero-section .container-fluid {
        position: relative;
        z-index: 5;
        width: 100%;
        max-width: 1850px;
        margin: 0 auto;
        padding: 0 max(40px, 3vw);
    }

    /* Hero Grid - Matched Layout */
    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        width: 100%;
        min-height: 56.5vh;
        /* Exact match to other pages */
    }

    /* Left Content Column - Matched Positioning */
    .hero-left {
        position: relative;
        z-index: 3;
        animation: slideInLeft 1s ease-out;
        margin-top: 0;
        max-width: 700px;
        width: 100%;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Hero Title - Matched Font Sizing */
    .hero-left .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
        font-weight: 750;
        line-height: 1.1;
        margin-bottom: 25px;
        animation: slideInLeft 1.2s ease-out 0.3s both;
    }

    /* Hero Subtitle - Matched Spacing */
    .hero-left .hero-subtitle {
        font-size: clamp(1.1rem, 2.5vw, 1.4rem) !important;
        color: rgba(255, 255, 255, 0.85) !important;
        line-height: 1.6 !important;
        margin: 0 0 35px !important;
        animation: slideInLeft 1.2s ease-out 0.6s both !important;
    }

    .highlight-text {
        background: var(--gradient-primary) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        position: relative !important;
        display: inline-block !important;
    }

    .highlight::after {
        content: '' !important;
        position: absolute !important;
        bottom: -5px !important;
        left: 0 !important;
        width: 100% !important;
        height: 4px !important;
        background: var(--gradient-primary) !important;
        border-radius: 2px !important;
        animation: expandLine 1.5s ease-out 1.5s both !important;
    }




    /* Insurance Actions - Matched Layout */
    .insurance-actions {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        animation: slideInLeft 1.2s ease-out 0.9s both;
    }

    .insurance-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 28px;
        border-radius: 50px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        border: none;
        cursor: pointer;
    }

    .insurance-btn.primary {
        background: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
        color: white;
        box-shadow: 0 10px 30px rgba(255, 95, 21, 0.3);
    }

    .insurance-btn.primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.6s;
    }

    .insurance-btn.primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(255, 95, 21, 0.4);
        color: white;
    }

    .insurance-btn.primary:hover::before {
        left: 100%;
    }

    .insurance-btn.secondary {
        background: transparent;
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
    }

    .insurance-btn.secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #FF5F15;
        color: #FF5F15;
        transform: translateY(-3px);
    }


    /* Hero Badge - CRITICAL FIX - Exact Match */
    .hero-badge {
        display: inline-flex !important;
        align-items: center !important;
        gap: 10px !important;
        background: rgba(255, 95, 21, 0.1) !important;
        border: 2px solid rgba(255, 95, 21, 0.3) !important;
        color: var(--secondary-orange) !important;
        padding: 12px 24px !important;
        border-radius: 50px !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        margin-bottom: 30px !important;
        backdrop-filter: blur(10px) !important;
        animation: slideInLeft 1s ease-out !important;
        width: fit-content !important;
    }

    .hero-badge i {
        font-size: 16px !important;
        animation: pulse 2s infinite !important;
    }

    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.1);
        }
    }

    @keyframes rotate {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    /* Right Image Column - Matched Positioning */
    .hero-right {
        position: relative;
        animation: slideInRight 1s ease-out;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        height: 100%;
        max-height: calc(100vh - 200px);
        width: 100%;
        max-width: 700px;
        justify-self: end;
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Education Visual Container */
    /* Education Visual Container - Matched Size */
    .education-visual-container {
        position: relative;
        width: 100%;
        max-width: 550px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Education Book System - Adjusted for consistency */
    .education-book-system {
        position: relative;
        width: 100%;
        max-width: 550px;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        perspective: 2500px;
    }

    /* Open Book 3D */
    .open-book-3d {
        position: relative;
        width: 480px;
        height: 340px;
        transform-style: preserve-3d;
        animation: bookFloat 6s ease-in-out infinite;
    }

    @keyframes bookFloat {

        0%,
        100% {
            transform: translateY(0px) rotateX(5deg);
        }

        50% {
            transform: translateY(-20px) rotateX(8deg);
        }
    }

    /* Book Cover Background */
    .book-cover-back {
        position: absolute;
        width: 500px;
        height: 360px;
        background: linear-gradient(135deg, #d14e0a, #cc8a00);
        border-radius: 10px;
        top: -10px;
        left: -10px;
        z-index: -1;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    }

    /* Book Pages */
    .book-page {
        position: absolute;
        width: 235px;
        height: 340px;
        background: linear-gradient(135deg, #ffffff 0%, #fefefe 50%, #f9f9f9 100%);
        border-radius: 0 8px 8px 0;
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.15),
            inset -2px 0 8px rgba(0, 0, 0, 0.05);
        padding: 28px 22px;
        transform-style: preserve-3d;
        transition: all 0.6s ease;
        overflow: hidden;
    }

    /* Page Texture Overlay */
    .book-page::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:
            repeating-linear-gradient(0deg,
                transparent,
                transparent 2px,
                rgba(0, 0, 0, 0.01) 2px,
                rgba(0, 0, 0, 0.01) 3px);
        pointer-events: none;
        z-index: 1;
    }

    .left-page {
        left: 0;
        /* transform-origin: right center; */
        /* transform: rotateY(-18deg) translateZ(8px); */
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 8px 0 0 8px;
    }

    .right-page {
        right: 0;
        /* transform-origin: left center; */
        /* transform: rotateY(18deg) translateZ(8px); */
        border-left: 1px solid rgba(0, 0, 0, 0.1);
    }



    /* Page Corner Fold Effect */
    .page-corner {
        position: absolute;
        width: 0;
        height: 0;
        border-style: solid;
        bottom: 0;
        transition: all 0.3s ease;
    }

    .left-page .page-corner {
        right: 0;
        border-width: 0 0 30px 30px;
        border-color: transparent transparent #e0e0e0 transparent;
    }

    .right-page .page-corner {
        left: 0;
        border-width: 0 30px 30px 0;
        border-color: transparent #e0e0e0 transparent transparent;
    }

    .book-page:hover .page-corner {
        border-width: 0 0 40px 40px;
    }

    .right-page:hover .page-corner {
        border-width: 0 40px 40px 0;
    }

    /* Page Content */
    .page-content {
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 18px;
        position: relative;
        z-index: 2;
    }

    .page-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding-bottom: 12px;
        border-bottom: 2px solid;
        border-image: linear-gradient(90deg, #FF5F15, #FFA802) 1;
    }

    .page-header i {
        font-size: 42px;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: iconPulse 3s ease-in-out infinite;
    }

    @keyframes iconPulse {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.1);
        }
    }

    .page-header h3 {
        font-size: 18px;
        font-weight: 700;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 1.2px;
    }

    /* Handwritten Style Text */
    .handwritten-text {
        display: flex;
        flex-direction: column;
        gap: 8px;
        font-family: 'Segoe Script', 'Bradley Hand', cursive, sans-serif;
        padding: 8px 0;
    }

    .text-line {
        font-size: 13px;
        color: #333;
        margin: 0;
        line-height: 1.6;
        position: relative;
        padding-left: 8px;
        font-style: italic;
        animation: textAppear 0.8s ease-out backwards;
    }

    .text-line:nth-child(1) {
        animation-delay: 0.2s;
    }

    .text-line:nth-child(2) {
        animation-delay: 0.4s;
    }

    .text-line:nth-child(3) {
        animation-delay: 0.6s;
    }

    @keyframes textAppear {
        from {
            opacity: 0;
            transform: translateX(-10px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .text-line::before {
        content: '•';
        position: absolute;
        left: -5px;
        color: #FF5F15;
        font-size: 16px;
    }

    /* Page Divider */
    .page-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, #FF5F15, #FFA802, transparent);
        margin: 5px 0;
    }

    /* Service List */
    .service-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .service-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 10px;
        background: rgba(255, 95, 21, 0.03);
        border-left: 3px solid #FF5F15;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .service-item:hover {
        background: rgba(255, 95, 21, 0.08);
        transform: translateX(5px);
    }

    .service-item i {
        font-size: 14px;
        color: #FF5F15;
    }

    .service-item span {
        font-size: 12px;
        color: #333;
        font-weight: 600;
    }

    /* Bottom Icons */
    .page-bottom-icons {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: auto;
    }

    .bottom-icon {
        width: 45px;
        height: 45px;
        background: rgba(255, 95, 21, 0.08);
        border: 2px solid rgba(255, 95, 21, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .bottom-icon:hover {
        background: rgba(255, 95, 21, 0.15);
        border-color: #FF5F15;
        transform: translateY(-3px) rotate(10deg);
    }

    .bottom-icon i {
        font-size: 20px;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* Page Number */
    .page-number {
        position: absolute;
        bottom: 18px;
        font-size: 32px;
        font-weight: 700;
        color: rgba(255, 95, 21, 0.15);
        font-family: 'Georgia', serif;
    }

    .left-page .page-number {
        left: 22px;
    }

    .right-page .page-number {
        right: 22px;
    }

    /* Book Spine/Binding */
    .book-spine-center {
        position: absolute;
        width: 12px;
        height: 340px;
        background: linear-gradient(to bottom, #d14e0a 0%, #cc8a00 50%, #d14e0a 100%);
        left: 50%;
        transform: translateX(-50%);
        box-shadow:
            inset 0 0 10px rgba(0, 0, 0, 0.4),
            0 0 20px rgba(0, 0, 0, 0.2);
        z-index: 10;
        border-radius: 2px;
    }

    .spine-line {
        position: absolute;
        width: 100%;
        height: 1px;
        background: rgba(0, 0, 0, 0.3);
        left: 0;
    }

    .spine-line:nth-child(1) {
        top: 25%;
    }

    .spine-line:nth-child(2) {
        top: 50%;
    }

    .spine-line:nth-child(3) {
        top: 75%;
    }

    /* Book Shadow */
    .book-shadow {
        position: absolute;
        width: 450px;
        height: 50px;
        background: radial-gradient(ellipse, rgba(0, 0, 0, 0.25) 0%, transparent 70%);
        bottom: -60px;
        left: 50%;
        transform: translateX(-50%);
        animation: shadowPulse 6s ease-in-out infinite;
        filter: blur(10px);
    }

    @keyframes shadowPulse {

        0%,
        100% {
            transform: translateX(-50%) scale(1);
            opacity: 0.4;
        }

        50% {
            transform: translateX(-50%) scale(1.1);
            opacity: 0.6;
        }
    }

    /* Floating Documents with Text Content */
    .floating-document {
        position: absolute;
        width: 85px;
        height: 110px;
        background: linear-gradient(135deg, #ffffff, #fafafa);
        border: 2px solid rgba(255, 95, 21, 0.25);
        border-radius: 8px;
        padding: 10px 8px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        box-shadow:
            0 12px 35px rgba(0, 0, 0, 0.15),
            inset 0 1px 2px rgba(255, 255, 255, 0.8);
        animation: docFloat 4s ease-in-out infinite;
        transition: all 0.3s ease;
    }

    .floating-document:hover {
        transform: translateY(-10px) rotate(0deg) scale(1.1);
        box-shadow: 0 20px 50px rgba(255, 95, 21, 0.3);
        border-color: #FF5F15;
        z-index: 100;
    }

    /* Document Header */
    .doc-header {
        display: flex;
        align-items: center;
        gap: 6px;
        padding-bottom: 6px;
        border-bottom: 1px solid rgba(255, 95, 21, 0.2);
    }

    .doc-header i {
        font-size: 14px;
        color: #FF5F15;
    }

    .doc-header span {
        font-size: 9px;
        font-weight: 700;
        color: #333;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Document Lines (Text simulation) */
    .doc-lines {
        display: flex;
        flex-direction: column;
        gap: 5px;
        flex: 1;
    }

    .doc-line {
        height: 2px;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.05));
        border-radius: 1px;
    }

    .doc-line.short {
        width: 60%;
    }

    .doc-line.medium {
        width: 75%;
    }

    /* Document Amount */
    .doc-amount {
        font-size: 16px;
        font-weight: 800;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-align: center;
        font-family: 'Courier New', monospace;
    }

    /* Document Stamp */
    .doc-stamp {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        padding: 6px;
        background: rgba(34, 197, 94, 0.1);
        border: 2px dashed #22c55e;
        border-radius: 6px;
    }

    .doc-stamp i {
        font-size: 18px;
        color: #22c55e;
    }

    .doc-stamp span {
        font-size: 10px;
        font-weight: 800;
        color: #22c55e;
        letter-spacing: 1px;
    }

    /* Document Barcode */
    .doc-barcode {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        height: 25px;
        padding: 0 5px;
    }

    .barcode-line {
        width: 3px;
        background: #000;
        border-radius: 1px;
    }

    .barcode-line:nth-child(1) {
        height: 20px;
    }

    .barcode-line:nth-child(2) {
        height: 25px;
    }

    .barcode-line:nth-child(3) {
        height: 15px;
    }

    .barcode-line:nth-child(4) {
        height: 22px;
    }

    /* Document Positions */
    .doc-float-1 {
        top: 5%;
        right: 0%;
        animation-delay: 0s;
        transform: rotate(-8deg);
    }

    .doc-float-2 {
        bottom: 18%;
        left: -15%;
        animation-delay: 1.5s;
        transform: rotate(10deg);
    }

    .doc-float-3 {
        bottom: 18%;
        right: -15%;
        animation-delay: 3s;
        transform: rotate(-5deg);
    }

    @keyframes docFloat {

        0%,
        100% {
            transform: translateY(0px) rotate(var(--rotation, 0deg));
        }

        50% {
            transform: translateY(-25px) rotate(calc(var(--rotation, 0deg) + 5deg));
        }
    }

    .doc-float-1 {
        --rotation: -8deg;
    }

    .doc-float-2 {
        --rotation: 10deg;
    }

    .doc-float-3 {
        --rotation: -5deg;
    }

    /* Knowledge Particles with Icons */
    .knowledge-particle {
        position: absolute;
        width: 35px;
        height: 35px;
        background: rgba(255, 255, 255, 0.9);
        border: 2px solid rgba(255, 95, 21, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(255, 95, 21, 0.2);
        animation: particleFloat 6s ease-in-out infinite;
    }

    .knowledge-particle i {
        font-size: 16px;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .particle-1 {
        top: 12%;
        left: 12%;
        animation-delay: 0s;
    }

    .particle-2 {
        top: 25%;
        right: 18%;
        animation-delay: 1.5s;
    }

    .particle-3 {
        bottom: 28%;
        left: 8%;
        animation-delay: 3s;
    }

    .particle-4 {
        bottom: 15%;
        right: 12%;
        animation-delay: 4.5s;
    }

    @keyframes particleFloat {

        0%,
        100% {
            transform: translateY(0px) scale(1) rotate(0deg);
            opacity: 0.7;
        }

        50% {
            transform: translateY(-40px) scale(1.2) rotate(180deg);
            opacity: 1;
        }
    }

    /* Stats Badges */
    .edu-stat-badge {
        position: absolute;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border: 2px solid rgba(255, 95, 21, 0.3);
        border-radius: 15px;
        padding: 12px 18px;
        display: flex;
        align-items: center;
        gap: 12px;
        animation: floatBadge 4s ease-in-out infinite;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(255, 95, 21, 0.2);
    }

    .edu-stat-badge:hover {
        background: rgba(255, 248, 235, 1);
        border-color: #FF5F15;
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 18px 40px rgba(255, 95, 21, 0.4);
    }

    .edu-badge-1 {
        top: 6%;
        left: 4%;
        animation-delay: 0s;
    }

    .edu-badge-2 {
        bottom: 32%;
        right: 4%;
        animation-delay: 1.5s;
    }

    .edu-badge-3 {
        bottom: 4%;
        left: 6%;
        animation-delay: 3s;
    }

    @keyframes floatBadge {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-18px);
        }
    }

    .badge-icon {
        width: 42px;
        height: 42px;
        background: var(--gradient-primary);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: white;
    }

    .badge-text {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .badge-text strong {
        font-size: 16px;
        color: #333;
        font-weight: 700;
    }

    .badge-text span {
        font-size: 10px;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .education-book-system {
            width: 480px;
            height: 480px;
        }

        .open-book-3d {
            width: 420px;
            height: 300px;
        }

        .book-page {
            width: 205px;
            height: 300px;
            padding: 24px 18px;
        }

        .book-spine-center {
            height: 300px;
        }

        .book-cover-back {
            width: 440px;
            height: 320px;
        }
    }

    @media (max-width: 991px) {
        .education-visual-container {
            height: 520px;
            margin-top: 40px;
        }

        .education-book-system {
            width: 420px;
            height: 420px;
        }

        .open-book-3d {
            width: 380px;
            height: 270px;
        }

        .book-page {
            width: 185px;
            height: 270px;
            padding: 22px 16px;
        }

        .page-header i {
            font-size: 36px;
        }

        .page-header h3 {
            font-size: 16px;
        }

        .text-line {
            font-size: 12px;
        }

        .service-item span {
            font-size: 11px;
        }

        .book-spine-center {
            height: 270px;
        }

        .book-cover-back {
            width: 400px;
            height: 290px;
        }
    }

    @media (max-width: 768px) {
        .education-visual-container {
            height: 480px;
        }

        .education-book-system {
            width: 370px;
            height: 370px;
        }

        .open-book-3d {
            width: 340px;
            height: 250px;
        }

        .book-page {
            width: 165px;
            height: 250px;
            padding: 20px 14px;
        }

        .page-header i {
            font-size: 32px;
        }

        .page-header h3 {
            font-size: 15px;
        }

        .text-line {
            font-size: 11px;
        }

        .service-item {
            padding: 6px 8px;
        }

        .service-item span {
            font-size: 10px;
        }

        .bottom-icon {
            width: 40px;
            height: 40px;
        }

        .bottom-icon i {
            font-size: 18px;
        }

        .book-spine-center {
            height: 250px;
            width: 10px;
        }

        .book-cover-back {
            width: 360px;
            height: 270px;
        }

        .floating-document {
            width: 75px;
            height: 95px;
            padding: 8px 6px;
        }

        .doc-header i {
            font-size: 12px;
        }

        .doc-header span {
            font-size: 8px;
        }

        .doc-amount {
            font-size: 14px;
        }

        .edu-stat-badge {
            padding: 10px 14px;
        }

        .badge-icon {
            width: 36px;
            height: 36px;
            font-size: 18px;
        }

        .badge-text strong {
            font-size: 14px;
        }

        .knowledge-particle {
            width: 30px;
            height: 30px;
        }

        .knowledge-particle i {
            font-size: 14px;
        }
    }

    @media (max-width: 576px) {
        .education-visual-container {
            height: 420px;
        }

        .education-book-system {
            width: 320px;
            height: 320px;
        }

        .open-book-3d {
            width: 300px;
            height: 220px;
        }

        .book-page {
            width: 145px;
            height: 220px;
            padding: 18px 12px;
        }

        .page-header i {
            font-size: 28px;
        }

        .page-header h3 {
            font-size: 13px;
        }

        .handwritten-text {
            gap: 6px;
        }

        .text-line {
            font-size: 10px;
        }

        .page-divider {
            margin: 3px 0;
        }

        .service-list {
            gap: 8px;
        }

        .service-item {
            padding: 5px 6px;
        }

        .service-item i {
            font-size: 12px;
        }

        .service-item span {
            font-size: 9px;
        }

        .page-bottom-icons {
            gap: 12px;
        }

        .bottom-icon {
            width: 35px;
            height: 35px;
        }

        .bottom-icon i {
            font-size: 16px;
        }

        .page-number {
            font-size: 24px;
            bottom: 14px;
        }

        .left-page .page-number {
            left: 16px;
        }

        .right-page .page-number {
            right: 16px;
        }

        .book-spine-center {
            height: 220px;
            width: 8px;
        }

        .book-cover-back {
            width: 320px;
            height: 240px;
        }

        .floating-document {
            width: 65px;
            height: 85px;
            padding: 7px 5px;
        }

        .doc-header {
            gap: 4px;
            padding-bottom: 4px;
        }

        .doc-header i {
            font-size: 10px;
        }

        .doc-header span {
            font-size: 7px;
        }

        .doc-lines {
            gap: 4px;
        }

        .doc-amount {
            font-size: 12px;
        }

        .doc-stamp {
            padding: 4px;
            gap: 2px;
        }

        .doc-stamp i {
            font-size: 14px;
        }

        .doc-stamp span {
            font-size: 8px;
        }

        .doc-barcode {
            height: 20px;
            padding: 0 3px;
        }

        .barcode-line {
            width: 2px;
        }

        .barcode-line:nth-child(1) {
            height: 16px;
        }

        .barcode-line:nth-child(2) {
            height: 20px;
        }

        .barcode-line:nth-child(3) {
            height: 12px;
        }

        .barcode-line:nth-child(4) {
            height: 18px;
        }

        .edu-stat-badge {
            display: none;
        }

        .knowledge-particle {
            width: 28px;
            height: 28px;
        }

        .knowledge-particle i {
            font-size: 12px;
        }
    }

    @media (max-width: 480px) {
        .education-visual-container {
            max-width: 280px;
            height: 380px;
        }

        .education-book-system {
            width: 280px;
            height: 280px;
        }

        .open-book-3d {
            width: 270px;
            height: 190px;
        }

        .book-page {
            width: 130px;
            height: 190px;
            padding: 15px 10px;
        }

        .page-header i {
            font-size: 24px;
        }

        .page-header h3 {
            font-size: 12px;
        }

        .text-line {
            font-size: 9px;
        }

        .service-item {
            padding: 4px 5px;
        }

        .service-item i {
            font-size: 10px;
        }

        .service-item span {
            font-size: 8px;
        }

        .bottom-icon {
            width: 32px;
            height: 32px;
        }

        .bottom-icon i {
            font-size: 14px;
        }

        .page-number {
            font-size: 20px;
            bottom: 12px;
        }

        .book-spine-center {
            height: 190px;
            width: 7px;
        }

        .book-cover-back {
            width: 290px;
            height: 210px;
        }

        .floating-document {
            width: 55px;
            height: 75px;
            padding: 6px 4px;
        }

        .doc-header i {
            font-size: 9px;
        }

        .doc-header span {
            font-size: 6px;
        }

        .doc-amount {
            font-size: 10px;
        }

        .knowledge-particle {
            width: 25px;
            height: 25px;
        }

        .knowledge-particle i {
            font-size: 11px;
        }
    }

    /* Additional Realistic Paper Effects */
    @media (hover: hover) {
        .book-page:hover {
            box-shadow:
                0 25px 70px rgba(0, 0, 0, 0.2),
                inset -3px 0 10px rgba(0, 0, 0, 0.08);
        }

        .floating-document:hover {
            animation-play-state: paused;
        }
    }

    /* Print-like Quality for Pages */
    .book-page {
        image-rendering: crisp-edges;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    /* Page Aging Effect (Optional - Subtle) */
    .book-page::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(ellipse at center,
                transparent 0%,
                rgba(255, 235, 205, 0.05) 100%);
        pointer-events: none;
        z-index: 1;
    }

    /* Enhanced Shadow for Realism */
    .open-book-3d::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: radial-gradient(ellipse at center,
                transparent 30%,
                rgba(0, 0, 0, 0.05) 100%);
        pointer-events: none;
        z-index: -2;
    }

    /* Glossy Effect on Documents */
    .floating-document::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background: linear-gradient(to bottom,
                rgba(255, 255, 255, 0.4) 0%,
                transparent 100%);
        pointer-events: none;
    }






    /* Responsive - Tablet */
    @media (max-width: 1024px) {
        .hero-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .hero-left {
            text-align: center;
            order: 2;
            margin-top: 1rem;
            max-width: 100%;
            justify-self: center;
        }

        .hero-badge {
            margin: 0 auto 25px !important;
        }

        .insurance-actions {
            justify-content: center;
        }

        .hero-right {
            order: 1;
            max-height: none;
            justify-self: center;
        }

        .education-visual-container {
            max-width: 450px;
        }

        .education-book-system {
            width: 480px;
            height: 480px;
        }
    }



    @media (max-width: 768px) {
        .hero-section {
            padding: 60px 0;
            min-height: 60vh;
        }

        .hero-grid {
            gap: 20px;
            min-height: auto;
        }

        .hero-left {
            margin-top: 0.5rem;
        }

        .hero-badge {
            padding: 10px 20px !important;
            font-size: 12px !important;
        }

        .education-visual-container {
            max-width: 380px;
            height: 480px;
        }

        .education-book-system {
            width: 370px;
            height: 370px;
        }

        .feature-pills {
            display: none;
        }

        .stats-vertical {
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .education-visual-container {
            height: 450px;
        }

        .education-box {
            width: 280px;
            height: 140px;
            padding: 25px 40px;
        }

        .education-box.featured {
            width: 300px;
            height: 160px;
        }

        .education-icon {
            font-size: 50px;
        }

        .circle-1 {
            width: 280px;
            height: 280px;
        }

        .circle-2 {
            width: 350px;
            height: 350px;
        }

        .circle-3 {
            width: 200px;
            height: 200px;
        }
    }

    @media (max-width: 576px) {
        .hero-section {
            padding: 60px 0 40px;
        }

        .education-visual-container {
            max-width: 320px;
            height: 420px;
        }

        .education-book-system {
            width: 320px;
            height: 320px;
        }

        .hero-grid {
            gap: 40px;
        }

        .education-visual-container {
            height: 400px;
        }

        .education-box {
            width: 250px;
            height: 120px;
            padding: 20px 30px;
        }

        .education-box.featured {
            width: 270px;
            height: 140px;
        }

        .education-icon {
            font-size: 45px;
        }
    }











    /* Services Section */
    .services-section {
        padding: 90px 0 110px;
    }

    .section-header {
        text-align: center;
        margin-bottom: 70px;
    }

    .section-title {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
        font-weight: 700;
        margin-bottom: 18px;
    }

    .section-title .gradient-text {
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .section-subtitle {
        font-size: clamp(1.05rem, 2.5vw, 1.3rem);
        color: rgba(255, 255, 255, 0.78);
        max-width: 750px;
        margin: 0 auto;
    }








    /* Fee Payment Cards */
    .fee-categories {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .category-card {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 25px;
        padding: 40px 30px;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }

    .category-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient-primary);
        opacity: 0;
        transition: opacity 0.4s;
        z-index: 0;
    }

    .category-card:hover::before {
        opacity: 0.08;
    }

    .category-card:hover {
        transform: translateY(-12px);
        border-color: rgba(255, 95, 21, 0.4);
        box-shadow: 0 25px 50px rgba(255, 95, 21, 0.25);
    }

    .category-card-content {
        position: relative;
        z-index: 1;
    }

    .category-header {
        font-size: clamp(20px, 3vw, 24px);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 3px solid transparent;
        border-image: var(--gradient-primary) 1;
    }

    .fee-services-grid {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .fee-service-item {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 15px;
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 20px;
        cursor: pointer;
        transition: var(--transition);
    }

    .fee-service-item:hover {
        background: linear-gradient(135deg, rgba(255, 95, 21, 0.12) 0%, rgba(255, 168, 2, 0.08) 100%);
        border-color: rgba(255, 95, 21, 0.3);
        transform: translateX(10px);
    }

    .fee-service-icon {
        width: 65px;
        height: 65px;
        flex-shrink: 0;
        transition: var(--transition);
    }

    .fee-service-item:hover .fee-service-icon {
        transform: scale(1.15) rotate(5deg);
        filter: brightness(1.2) saturate(1.3);
    }

    .fee-service-info h4 {
        font-size: 17px;
        font-weight: 600;
        color: white;
        margin-bottom: 5px;
    }

    .fee-service-info p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.65);
        margin: 0;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .education-stats {
            grid-template-columns: repeat(2, 1fr);
        }

        .fee-categories {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
    }

    @media (max-width: 991px) {
        .hero-section {
            padding: 80px 0 60px;
            min-height: 60vh;
        }

        .education-stats {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .fee-categories {
            grid-template-columns: 1fr;
            gap: 25px;
        }
    }

    @media (max-width: 768px) {
        .hero-section {
            padding: 70px 0 50px;
            min-height: 50vh;
        }

        .float-icon {
            font-size: 30px;
        }

        .education-stats {
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .stat-card {
            padding: 20px 15px;
        }

        .stat-icon {
            width: 50px;
            height: 50px;
            font-size: 22px;
        }

        .category-card {
            padding: 30px 25px;
        }

        .fee-service-item {
            padding: 15px;
            gap: 15px;
        }

        .fee-service-icon {
            width: 55px;
            height: 55px;
        }
    }

    @media (max-width: 576px) {
        .hero-badge {
            font-size: 13px;
            padding: 10px 20px;
        }

        .education-stats {
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .category-card {
            padding: 25px 20px;
        }

        .fee-service-item {
            padding: 12px;
        }

        .fee-service-icon {
            width: 50px;
            height: 50px;
        }

        .fee-service-info h4 {
            font-size: 15px;
        }

        .fee-service-info p {
            font-size: 12px;
        }
    }
