    :root {
        --blue: #0f2a52;
        --blue-dark: #0b2244;
        --gold: #e3b341;
        --gold-soft: #f5d47a;
        --bg: #fbf9f4;
        --text: #2b2b2b;
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0
    }

    body {
        font-family: 'Poppins', sans-serif;
        background: var(--bg);
        color: var(--text);
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* Ensure images are responsive by default */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Prevent horizontal overflow */
    * {
        max-width: 100%;
    }

    /* Container improvements */
    .hero-image-wrap,
    .about-card-header,
    .logo-wrap {
        overflow: hidden;
    }

    /* Responsive video/iframe */
    iframe,
    video {
        max-width: 100%;
        height: auto;
    }

    h1,
    h2,
    h3 {
        font-family: 'Playfair Display', serif;
        color: var(--blue);
    }

    a {
        text-decoration: none;
        color: inherit
    }

    .container {
        max-width: 1200px;
        margin: auto;
        padding: 0 20px;
        width: 100%;
    }

    /* Responsive container adjustments */
    @media (min-width: 1400px) {
        .container {
            max-width: 1300px;
        }
    }

    header {
        background: #fff;
        border-bottom: 1px solid #eee;
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 998;
        background: #fff;
        transition: box-shadow 0.3s ease, background 0.3s ease;
        animation: slideDown 0.4s ease;
        overflow: visible;
    }

    .site-header {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    }

    .main-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1;
    }

    .nav-links {
        display: flex;
        gap: 26px;
        list-style: none;
        font-size: 14px;
        font-weight: 500;
    }

    .menu-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .menu-toggle span {
        width: 26px;
        height: 3px;
        background: var(--blue);
        border-radius: 2px;
    }



    @keyframes slideDown {
        from {
            transform: translateY(-100%);
        }

        to {
            transform: translateY(0);
        }
    }



    .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        height: 80px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 220px;
    }

    .logo img {
        height: 48px;
        width: auto;
        object-fit: contain;
    }

    nav {
        flex: 1;
    }

    nav ul {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 26px;
        list-style: none;
        font-size: 14px;
        font-weight: 500;
        white-space: nowrap;
    }

    nav ul li {
        cursor: pointer;
        position: relative;
    }

    nav ul li::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 0;
        height: 2px;
        background: #e3b341;
        transition: width 0.3s ease;
    }

    nav ul li:hover::after {
        width: 100%;
    }

    .nav .btn {
        margin-left: 40px;
        padding: 12px 24px;
        border-radius: 14px;
        font-size: 14px;
        white-space: nowrap;
    }


    .btn {
        background: linear-gradient(135deg, var(--gold), var(--gold-soft));
        color: #000;
        padding: 12px 22px;
        border-radius: 12px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        min-height: 44px;
        box-sizing: border-box;
    }

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(227, 179, 65, 0.4);
    }




    /* Hero  Section*/
    .hero {
        background: linear-gradient(135deg, var(--blue), var(--blue-dark));
        color: #fff;
        padding: 80px 0 100px;
        position: relative;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 50px;
        align-items: center;
    }

    .badge {
        display: inline-block;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 6px 14px;
        border-radius: 20px;
        color: var(--gold-soft);
        margin-bottom: 18px;
        font-size: 14px;
    }

    .hero h1 {
        color: #fff;
        font-size: 48px;
        margin-bottom: 15px;
    }

    .hero h1 span {
        color: var(--gold)
    }

    .hero p {
        color: #d6dff0;
        max-width: 520px
    }


    .hero-actions {
        margin-top: 30px;
        display: flex;
        gap: 18px
    }

    .btn-outline {
        border: 1px solid rgba(255, 255, 255, 0.4);
        padding: 12px 22px;
        border-radius: 12px;
        color: #fff;
    }

    .hero {
        background: radial-gradient(circle at top left,
                #1d3c73,
                #0b2244 70%);
        color: #fff;
        padding: 110px 0 160px;
        position: relative;
        overflow: hidden;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        align-items: center;
        gap: 60px;
    }

    .hero-content {
        max-width: 620px;
    }

    .hero .badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(227, 179, 65, 0.15);
        border: 1px solid rgba(227, 179, 65, 0.4);
        color: #f5d47a;
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero h1 {
        font-size: 56px;
        line-height: 1.15;
        margin-bottom: 20px;
    }

    .hero h1 span {
        color: #f1c24b;
    }

    .hero-subtitle {
        font-size: 20px;
        color: #e6ecf5;
        margin-bottom: 14px;
    }

    .hero-desc {
        font-size: 16px;
        color: #cfd8ea;
        max-width: 520px;
    }

    .hero-actions {
        display: flex;
        gap: 22px;
        margin-top: 34px;
    }

    .hero .btn {
        background: linear-gradient(135deg, #f5d47a, #e3b341);
        color: #0b2244;
        padding: 16px 28px;
        border-radius: 16px;
        font-weight: 600;
    }

    .hero .btn-outline {
        border: 1px solid rgba(255, 255, 255, 0.5);
        padding: 16px 28px;
        border-radius: 16px;
        color: #fff;
    }

    .hero-features {
        display: flex;
        gap: 26px;
        margin-top: 40px;
        font-size: 14px;
        color: #e3ebf7;
    }

    .hero-image-wrap {
        text-align: center;
    }

    .hero-image-wrap img {
        height: 340px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

    .hero-curve {
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 90px;
        background: #fbf9f4;
        border-top-left-radius: 100% 100%;
        border-top-right-radius: 100% 100%;
        overflow: hidden;
    }


    /* About  Section*/
    .about-section {
        padding: 100px 0;
        background: #fbfaf6;
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .about-content h2 {
        font-size: 44px;
        margin-bottom: 20px;
    }

    .about-content h2 span {
        color: #e3b341;
    }

    .about-content p {
        color: #4a5a73;
        margin-bottom: 18px;
        line-height: 1.7;
    }

    .about-badge {
        display: inline-block;
        background: #f5efd8;
        color: #b99025;
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 14px;
        margin-bottom: 16px;
    }

    .about-tags {
        display: flex;
        gap: 14px;
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .about-tags span {
        background: #eef1f5;
        padding: 10px 16px;
        border-radius: 30px;
        font-size: 14px;
    }

    .about-card {
        background: radial-gradient(circle at top right, #1e3f78, #0b2244 70%);
        color: #fff;
        border-radius: 28px;
        padding: 40px;
        overflow: hidden;
        word-wrap: break-word;
    }

    .about-card-header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 20px;
    }

    .about-card-header img {
        height: 60px;
        width: auto;
        object-fit: contain;
    }

    .about-card-header h3 {
        margin: 0;
        font-size: 22px;
    }

    .about-card-header small {
        color: #cfd8ea;
    }

    .about-card blockquote {
        font-style: italic;
        color: #f5d47a;
        margin: 20px 0 35px;
        border-left: 4px solid #e3b341;
        padding-left: 16px;
    }

    .about-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-box {
        background: rgba(255, 255, 255, 0.08);
        padding: 22px;
        border-radius: 18px;
    }

    .stat-box strong {
        font-size: 28px;
        color: #f1c24b;
        display: block;
    }

    .stat-box span {
        font-size: 14px;
        color: #d9e1f2;
    }



    /* Why Choose Us Section */
    .why-section {
        background: #fbfaf6;
        padding: 100px 0;
    }

    .why-title {
        text-align: center;
        max-width: 800px;
        margin-bottom: 70px;
    }

    .why-badge {
        display: inline-block;
        background: #f5efd8;
        color: #b99025;
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 14px;
        margin-bottom: 14px;
    }

    .why-title h2 {
        font-size: 44px;
        margin-bottom: 18px;
    }

    .why-title h2 span {
        color: #e3b341;
    }

    .why-title p {
        color: #5a6b84;
        font-size: 16px;
    }

    .why-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .why-card {
        background: #fffdf7;
        border: 1px solid #eadfbe;
        border-radius: 20px;
        padding: 34px 30px;
        transition: all 0.3s ease;
    }

    .why-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    }

    .icon-box {
        width: 54px;
        height: 54px;
        background: #e3b341;
        color: #0b2244;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 22px;
    }

    .why-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .why-card p {
        color: #5f6f86;
        font-size: 15px;
        line-height: 1.6;
    }

    /* Our Plans Section */
    .plans-section {
        background: #fbfaf6;
        padding: 100px 0;
    }

    .plans-title {
        text-align: center;
        max-width: 800px;
        margin-bottom: 70px;
    }

    .plans-title .badge {
        background: #f5efd8;
        color: #b99025;
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 14px;
    }

    .plans-title h2 {
        font-size: 44px;
        margin: 18px 0;
    }

    .plans-title h2 span {
        color: #e3b341;
    }

    .plans-title p {
        color: #5a6b84;
    }

    .plans-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .plan-card {
        background: #fffdf7;
        border: 1px solid #eadfbe;
        border-radius: 22px;
        padding: 36px 30px;
        text-align: center;
        position: relative;
        word-wrap: break-word;
    }

    .plan-icon {
        width: 56px;
        height: 56px;
        background: #e3b341;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        margin: 0 auto 18px;
    }

    .plan-price {
        font-size: 32px;
        font-weight: 700;
        margin: 10px 0 22px;
        color: #e3b341;
    }

    .plan-price span {
        font-size: 14px;
        color: #7a8aa0;
    }

    .plan-summary {
        background: #f5f1e5;
        border-radius: 14px;
        padding: 16px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 22px;
    }

    .plan-summary div {
        font-size: 13px;
    }

    .plan-summary span {
        display: block;
        font-weight: 700;
    }

    .plan-features {
        list-style: none;
        text-align: left;
        padding: 0;
        margin-bottom: 30px;
    }

    .plan-features li {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .plan-btn {
        display: inline-block;
        background: linear-gradient(90deg, #f2d17a, #d1a233);
        color: #000;
        padding: 14px 28px;
        border-radius: 12px;
        font-weight: 600;
    }

    .featured {
        background: linear-gradient(180deg, #183465, #0b1f3f);
        color: #fff;
        transform: translateY(-20px);
    }

    .featured .plan-price,
    .featured h3 {
        color: #fff;
    }

    .featured .plan-summary {
        background: rgba(255, 255, 255, 0.1);
    }

    .featured .plan-btn {
        background: #f2d17a;
    }

    .popular {
        position: absolute;
        top: -14px;
        left: 50%;
        transform: translateX(-50%);
        background: #f2d17a;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
    }

    .plans-note {
        margin-top: 60px;
        text-align: center;
        font-size: 14px;
        color: #5a6b84;
    }


    /* Benefits Section */
    .benefits-section {
        background: #fbfaf6;
        padding: 100px 0;
    }

    .benefits-title {
        text-align: center;
        max-width: 780px;
        margin: 0 auto 70px;
    }

    .benefits-title .badge {
        background: #f5efd8;
        color: #b99025;
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 14px;
    }

    .benefits-title h2 {
        font-size: 42px;
        margin: 18px 0;
    }

    .benefits-title h2 span {
        color: #e3b341;
    }

    .benefits-title p {
        color: #5a6b84;
        font-size: 16px;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 26px;
    }

    .benefit-card {
        background: #fffdf7;
        border: 1px solid #eadfbe;
        border-radius: 20px;
        padding: 30px 26px;
        transition: all 0.3s ease;
    }

    .benefit-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    }

    .benefit-card .icon {
        width: 52px;
        height: 52px;
        background: #e3b341;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 18px;
    }

    .benefit-card h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .benefit-card p {
        font-size: 14px;
        color: #5a6b84;
        line-height: 1.6;
    }



    /* Simple Process Section */
    .process-section {
        background: linear-gradient(135deg, #f6f5ef 0%, #f1ede0 100%);
        padding: 120px 0;
        position: relative;
    }

    .process-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23d4a73c" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        pointer-events: none;
    }

    .process-header {
        text-align: center;
        margin-bottom: 90px;
        position: relative;
        z-index: 2;
    }

    .process-badge {
        background: #f1e7cc;
        color: #c89b2d;
        padding: 8px 18px;
        border-radius: 30px;
        font-weight: 600;
        display: inline-block;
        margin-bottom: 18px;
    }

    .process-header h2 {
        font-family: "Playfair Display", serif;
        font-size: 54px;
        color: #13233a;
    }

    .process-header h2 span {
        color: #d4a73c;
    }

    .process-header p {
        font-size: 18px;
        color: #5b6b82;
    }

    .process-steps {
        position: relative;
        max-width: 1200px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        z-index: 2;
    }

    .process-line {
        position: absolute;
        top: 60px;
        left: 15%;
        right: 15%;
        height: 3px;
        background: linear-gradient(90deg, #e6c87a, #d4a73c, #e6c87a);
        border-radius: 2px;
        z-index: 1;
    }

    .step {
        flex: 1;
        max-width: 280px;
        position: relative;
        z-index: 2;
        padding: 0 15px;
    }

    .icon-circle {
        width: 120px;
        height: 120px;
        background: linear-gradient(135deg, #f1c24b, #e3b341);
        border-radius: 50%;
        margin: 0 auto 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 15px 40px rgba(227, 179, 65, 0.3);
        position: relative;
        border: 4px solid #fff;
        transition: all 0.3s ease;
    }

    .step:hover .icon-circle {
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(227, 179, 65, 0.4);
        background: linear-gradient(135deg, #f5d47a, #e3b341);
    }

    .step-no {
        position: absolute;
        top: -10px;
        right: -10px;
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, #0b2244, #13233a);
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 3px solid #fff;
        box-shadow: 0 8px 20px rgba(11, 34, 68, 0.4);
        z-index: 3;
    }

    .icon-circle svg {
        width: 34px;
        height: 34px;
        stroke: #13233a;
        stroke-width: 2;
        fill: none;
    }

    .step h4 {
        font-family: "Playfair Display", serif;
        font-size: 16px;
        margin-bottom: 16px;
        color: #13233a;
        font-weight: 600;
        line-height: 1.3;
    }

    .step p {
        font-size: 16px;
        line-height: 1.7;
        color: #5b6b82;
        max-width: 260px;
        margin: 0 auto;
    }

    /* Icon styling inside circles */
    .icon-circle svg {
        width: 40px;
        height: 40px;
        stroke: #0b2244;
        stroke-width: 2.5;
        fill: none;
    }




    /* Features Section */
    .features-section {
        background: radial-gradient(circle at top, #1f3a6d, #0b2244);
        padding: 120px 0;
        color: #ffffff;
    }

    .features-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .features-left .tag {
        background: rgba(255, 255, 255, 0.12);
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 13px;
        display: inline-block;
        margin-bottom: 16px;
    }

    .features-left h2 {
        font-size: 44px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .features-left h2 span {
        color: #e3b341;
    }

    .features-left .subtitle {
        color: #c7d2e4;
        font-size: 16px;
        max-width: 520px;
        margin-bottom: 36px;
    }

    .features-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 40px;
        margin-bottom: 40px;
    }

    .features-list ul {
        list-style: none;
        padding: 0;
    }

    .features-list li {
        position: relative;
        padding-left: 26px;
        margin-bottom: 12px;
        color: #e6edf8;
        font-size: 14px;
    }

    .features-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 0;
        width: 18px;
        height: 18px;
        background: #e3b341;
        color: #0b2244;
        font-size: 12px;
        font-weight: bold;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cta-btn {
        display: inline-block;
        background: linear-gradient(135deg, #f2d27a, #e3b341);
        color: #0b2244;
        padding: 14px 30px;
        border-radius: 12px;
        font-weight: 600;
        text-decoration: none;
        transition: transform 0.3s ease;
    }

    .cta-btn:hover {
        transform: translateY(-3px);
    }

    .features-right {
        display: flex;
        flex-direction: column;
        gap: 26px;
    }

    .feature-row {
        display: flex;
        gap: 26px;
    }

    .feature-box {
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 18px;
        padding: 28px;
        flex: 1;
    }

    .feature-box h3 {
        font-size: 30px;
        color: #e3b341;
        margin-bottom: 6px;
    }

    .feature-box p {
        font-size: 14px;
        color: #e6edf8;
    }

    .feature-box.large h3 {
        font-size: 33px;
    }

    .feature-box.wide {
        padding: 30px;
    }


    /* ============================
   FAQ SECTION
============================ */

    .faq-section {
        background: #fbf7ee;
        padding: 120px 40px;
        width: 100%;
        text-align: center;
    }

    .faq-section .container {
        max-width: 100%;
        padding: 0;
    }

    /* ============================
   HEADING
============================ */

    .faq-tag {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #f4eddc;
        color: #c89b2d;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 13px;
        margin-bottom: 16px;
        letter-spacing: 0.5px;
    }

    .faq-title {
        font-size: 46px;
        color: #13233a;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .faq-title span {
        color: #d6a93a;
    }

    .faq-subtitle {
        font-size: 16px;
        color: #445066;
        max-width: 640px;
        margin: 0 auto 60px;
        line-height: 1.6;
    }

    /* ============================
   FAQ LIST
============================ */

    .faq-list {
        max-width: 1100px;
        margin: 0 auto;
        text-align: left;
    }

    /* ============================
   FAQ ITEM
============================ */

    .faq-item {
        background: #fffdf7;
        border: 1px solid #e7dcc3;
        border-radius: 16px;
        margin-bottom: 18px;
        overflow: hidden;
        transition: box-shadow 0.3s ease, transform 0.2s ease;
    }

    .faq-item:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    }

    /* ============================
   QUESTION
============================ */

    .faq-question {
        width: 100%;
        background: transparent;
        border: none;
        padding: 22px 26px;
        font-size: 18px;
        font-weight: 600;
        color: #13233a;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        text-align: left;
    }

    .faq-question:focus {
        outline: none;
    }

    /* Arrow */
    .faq-question::after {
        content: "";
        width: 14px;
        height: 14px;
        border-right: 2px solid #13233a;
        border-bottom: 2px solid #13233a;
        transform: rotate(45deg);
        transition: transform 0.3s ease, border-color 0.3s ease;
    }

    /* ============================
   ANSWER
============================ */

    .faq-answer {
        padding: 0 26px;
        font-size: 15px;
        color: #4d5a6f;
        line-height: 1.7;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
    }

    /* ============================
   ACTIVE STATE
============================ */

    .faq-item.active .faq-answer {
        max-height: 1200px;
        padding: 0 26px 22px;
    }

    .faq-item.active .faq-question {
        color: #c89b2d;
    }

    .faq-item.active .faq-question::after {
        transform: rotate(-135deg);
        border-color: #c89b2d;
    }

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

    @media (max-width: 768px) {
        .faq-section {
            padding: 80px 20px;
        }

        .faq-title {
            font-size: 34px;
        }

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

    /*Career Opportunity */
    .cre-exact {
        background: radial-gradient(circle at top, #1f3d75, #0b1f3f);
        padding: 90px 0;
        font-family: "Inter", sans-serif;
    }

    .cre-container {
        max-width: 1200px;
        margin: auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 50px;
    }

    .cre-badge {
        background: rgba(255, 200, 90, 0.15);
        color: #f3c04d;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 13px;
        display: inline-block;
        margin-bottom: 18px;
    }

    .cre-left h2 {
        color: #fff;
        font-size: 42px;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .cre-left h2 span {
        color: #f3c04d;
    }

    .cre-desc {
        color: #cfd8e3;
        max-width: 520px;
        margin-bottom: 35px;
        line-height: 1.6;
    }

    .cre-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cre-card {
        background: rgba(255, 255, 255, 0.08);
        border-radius: 14px;
        padding: 22px;
    }

    .cre-card .icon {
        font-size: 26px;
        color: #f3c04d;
        margin-bottom: 10px;
    }

    .cre-card h4 {
        color: #fff;
        margin-bottom: 6px;
        font-size: 17px;
    }

    .cre-card p {
        font-size: 14px;
        color: #cfd8e3;
    }

    .cre-btn {
        display: inline-block;
        margin-top: 35px;
        background: #f3c04d;
        color: #0b1f3f;
        padding: 14px 28px;
        border-radius: 10px;
        font-weight: 600;
        text-decoration: none;
    }

    .cre-right {
        background: rgba(255, 255, 255, 0.12);
        border-radius: 20px;
        padding: 30px;
    }

    .cre-right h3 {
        color: #fff;
        margin-bottom: 25px;
        font-size: 22px;
    }

    .cre-steps {
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .step {
        display: flex;
        gap: 15px;
    }

    .step .num {
        background: #f3c04d;
        color: #0b1f3f;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
    }

    .step strong {
        color: #fff;
    }

    .step p {
        font-size: 14px;
        color: #cfd8e3;
    }

    .cre-right hr {
        margin: 28px 0;
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .cre-checks {
        list-style: none;
        padding: 0;
    }

    .cre-checks li {
        color: #cfd8e3;
        margin-bottom: 12px;
        padding-left: 26px;
        position: relative;
    }

    .cre-checks li::before {
        content: "✔";
        color: #f3c04d;
        position: absolute;
        left: 0;
    }


    /* gold-cta-section */
    .gold-cta-section {
        background: #fffaf0;
        padding: 80px 20px;
        display: flex;
        justify-content: center;
    }

    .gold-cta-card {
        background: radial-gradient(circle at top, #1f3d75, #0b1f3f);
        max-width: 900px;
        width: 100%;
        border-radius: 28px;
        padding: 70px 40px;
        text-align: center;
        color: #ffffff;
        overflow: hidden;
        word-wrap: break-word;
        box-sizing: border-box;
    }

    .badge {
        display: inline-block;
        background: rgba(255, 200, 90, 0.15);
        color: #f3c04d;
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 14px;
        margin-bottom: 25px;
    }

    .gold-cta-card h2 {
        font-size: 42px;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .gold-cta-card h2 span {
        color: #f3c04d;
    }

    .subtitle {
        font-size: 16px;
        color: #cfd8e3;
        max-width: 650px;
        margin: 0 auto 30px;
        line-height: 1.6;
    }

    .features {
        display: flex;
        justify-content: center;
        gap: 30px;
        font-size: 14px;
        color: #e6edf7;
        margin-bottom: 35px;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 18px;
        margin-bottom: 40px;
    }

    .btn {
        padding: 14px 28px;
        border-radius: 12px;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .btn.primary {
        background: #f3c04d;
        color: #0b1f3f;
    }

    .btn.secondary {
        background: #ffffff;
        color: #0b1f3f;
    }

    .divider {
        height: 1px;
        background: rgba(255, 255, 255, 0.15);
        margin: 35px 0 25px;
    }

    .contact {
        display: flex;
        justify-content: center;
        gap: 35px;
        font-size: 14px;
        color: #cfd8e3;
    }

    /* Footer Section */
    .site-footer {
        background: #1c3b6f;
        color: #dbe4f0;
        padding: 70px 40px 0;
        font-size: 14px;
    }

    .footer-container {
        display: grid;
        grid-template-columns: 2.2fr 1fr 1.5fr 1.3fr;
        gap: 50px;
        max-width: 1300px;
        margin: auto;
    }

    .site-footer h4 {
        color: #ffffff;
        font-size: 18px;
        margin-bottom: 20px;
    }

    .company h3 {
        color: #ffffff;
        margin: 0;
        font-size: 20px;
    }

    .company span {
        font-size: 14px;
        color: #cfd8e3;
    }

    .logo-wrap {
        display: flex;
        gap: 14px;
        align-items: center;
        margin-bottom: 20px;
    }

    .logo-wrap img {
        width: 55px;
        height: auto;
        object-fit: contain;
    }

    .company p {
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .badges span {
        display: inline-block;
        background: #2c4f86;
        padding: 6px 12px;
        border-radius: 6px;
        margin: 4px 6px 0 0;
        font-size: 12px;
        color: #fff;
    }

    .site-footer ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .site-footer ul li {
        margin-bottom: 12px;
    }

    .site-footer a {
        color: #dbe4f0;
        text-decoration: none;
    }

    .site-footer a:hover {
        color: #f3c04d;
    }

    .contact-list li {
        display: flex;
        gap: 10px;
        line-height: 1.6;
    }

    .trust-box {
        margin-top: 25px;
        padding: 18px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.06);
    }

    .trust-box strong {
        color: #f3c04d;
        display: block;
        margin-bottom: 6px;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        margin-top: 60px;
        padding: 25px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1300px;
        margin-left: auto;
        margin-right: auto;
    }

    .bottom-links a {
        margin-left: 20px;
        font-size: 13px;
    }


    /* SECTION */
    section {
        padding: 90px 0;
        scroll-margin-top: 90px;
    }

    .section-title {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 60px;
    }

    .section-title span {
        background: #f4ecd2;
        color: #b99025;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 14px;
        display: inline-block;
        margin-bottom: 12px;
    }

    .section-title h2 {
        font-size: 40px;
    }

    .section-title h2 em {
        color: var(--gold);
        font-style: normal
    }

    .about {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 50px;
        align-items: center;
    }

    .about-card {
        background: linear-gradient(135deg, var(--blue), var(--blue-dark));
        color: #fff;
        border-radius: 30px;
        padding: 40px;
    }

    .stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }

    .stat {
        background: rgba(255, 255, 255, 0.1);
        padding: 22px;
        border-radius: 16px;
    }

    .stat strong {
        color: var(--gold);
        font-size: 26px
    }

    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 26px;
    }

    .card {
        background: #fff;
        border-radius: 20px;
        padding: 30px;
        border: 1px solid #eadfbe;
    }

    .card h3 {
        margin: 15px 0 8px
    }

    .plans {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        align-items: stretch;
    }

    .plan {
        background: #fff;
        border-radius: 24px;
        padding: 36px 28px;
        border: 1px solid #eadfbe;
        text-align: center;
    }

    .plan.featured {
        background: linear-gradient(135deg, var(--blue), var(--blue-dark));
        color: #fff;
        transform: scale(1.05);
    }

    .plan.featured h3,
    .plan.featured p {
        color: #fff
    }

    .price {
        font-size: 34px;
        color: var(--gold);
        font-weight: 700
    }

    .cta {
        background: linear-gradient(135deg, var(--blue), var(--blue-dark));
        color: #fff;
        border-radius: 30px;
        padding: 80px 30px;
        text-align: center;
    }

    .cta h2 {
        color: #fff;
        font-size: 42px
    }

    /* FOOTER */
    footer {
        background: #18386a;
        color: #cfd8ea;
        padding: 70px 0 30px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1.2fr 1fr;
        gap: 30px;
    }

    footer h4 {
        color: #fff;
        margin-bottom: 15px
    }

    footer ul {
        list-style: none
    }

    footer li {
        margin-bottom: 10px
    }

    .copyright {
        text-align: center;
        margin-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
        font-size: 14px;
    }

    /* SCROLL ANIMATIONS */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s ease
    }

    .reveal.left {
        transform: translateX(-60px)
    }

    .reveal.right {
        transform: translateX(60px)
    }

    .reveal.show {
        opacity: 1;
        transform: translate(0)
    }

    .process-steps .step {
        flex-direction: column;

        @media (max-width: 992px) {
            text-align: center;
        }
    }

    /* ==============================
   SMVPL VOUCHERS – EXACT DESIGN
============================== */

    .smvpl-voucher-section {
        background: linear-gradient(135deg, #0b2a6f, #6a1bb9);
        padding: 90px 0;
        color: #fff;
    }

    .voucher-wrapper {
        display: grid;
        grid-template-columns: 1.1fr 1.4fr;
        gap: 40px;
        align-items: start;
    }

    .voucher-title {
        color: #fff;
    }

    .voucher-left-cards {
        display: grid;
        gap: 18px;
        margin-top: 30px;
    }

    /* LEFT CONTENT */
    .voucher-left h2 {
        font-size: 42px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .voucher-left p {
        font-size: 15px;
        line-height: 1.7;
        opacity: 0.95;
    }

    /* RIGHT GRID */
    .voucher-right {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .voucher-card {
        padding: 26px;
        border-radius: 18px;
        min-height: 180px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    }

    .voucher-card .icon {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .voucher-card h4 {
        font-size: 18px;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .voucher-card p {
        font-size: 14px;
        opacity: 0.95;
    }

    /* COLOR MATCHING IMAGE */
    .fmcg {
        background: linear-gradient(135deg, #1e88ff, #0b52d6);
    }

    .travel {
        background: linear-gradient(135deg, #00c6a9, #00897b);
    }

    .entertainment {
        background: linear-gradient(135deg, #7c2ae8, #5121a8);
    }

    .gift {
        background: linear-gradient(135deg, #ff9a3c, #ff6a00);
    }

    .sports {
        background: linear-gradient(135deg, #1cc88a, #0f8b5c);
    }

    .gold {
        background: linear-gradient(135deg, #ffd166, #caa100);
        color: #222;
    }

    .dark {
        background: linear-gradient(135deg, #2a2a55, #16162e);
    }

    /* WIDE CARDS */
    .voucher-card.wide {
        grid-column: span 2;
    }