* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            min-height: 100vh;
            width: 100%;
            overflow-x: hidden;
            background: linear-gradient(135deg, #64328a 0%, #6a1b9a 50%, #64328a 100%);
            color: white;
            position: relative;
        }

        /* --- Header --- */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 8%;
            position: relative;
            z-index: 20;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img {
            height: 45px;
            width: auto;
        }

        .logo-text {
            font-weight: 800;
            font-size: 1.2rem;
            line-height: 1;
            text-transform: uppercase;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 400;
        }

        .testimonials-btn {
            background-color: #00e5ff;
            color: white;
            padding: 0.6rem 1.2rem;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            box-shadow: 0 4px 10px rgba(0, 229, 255, 0.3);
        }

        /* --- Hero Section --- */
        main {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 2rem 8% 4rem 8%;
            /* Added bottom padding to make space */
            gap: 5%;
            position: relative;
            z-index: 10;
        }

        .hero-content {
            flex: 1;
            padding-top: 2rem;
            /* Aligned better with the bigger form */
        }

        .hero-content h1 {
            font-size: 2.8rem;
            line-height: 1.3;
            margin-bottom: 1.5rem;
            font-weight: 800;
            text-transform: uppercase;
        }

        .highlight-bg {
            background-color: white;
            color: #4a148c;
            padding: 2px 10px;
            display: inline-block;
            transform: skewX(-5deg);
            margin-bottom: 5px;
        }

        .highlight-bg span {
            display: block;
            transform: skewX(5deg);
        }

        .highlight-box {
            border: 2px solid white;
            padding: 2px 10px;
            display: inline-block;
            margin-top: 5px;
        }

        .hero-content p {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
        }

        .cta-group {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .order-now-btn {
            background-color: white;
            color: #4a148c;
            padding: 12px 30px;
            font-weight: 800;
            text-decoration: none;
            border-radius: 4px;
            text-transform: uppercase;
            font-size: 1rem;
            transition: transform 0.2s;
        }

        .order-now-btn:hover {
            transform: translateY(-3px);
        }

        .live-chat-bubble {
            background-color: white;
            color: #4a148c;
            padding: 8px 20px;
            font-weight: 800;
            border-radius: 4px;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 0.9rem;
            position: relative;
        }

        .live-chat-bubble::after {
            content: '';
            position: absolute;
            left: -8px;
            top: 50%;
            transform: translateY(-50%);
            border-width: 8px 8px 8px 0;
            border-style: solid;
            border-color: transparent white transparent transparent;
        }

        /* --- UPDATED: Hero Form Card (Bigger) --- */
        .hero-card {
            /* INCREASED WIDTH from 350px to 420px */
            flex: 0 0 420px;

            /* Slightly darker background to pop against the main bg */
            background: linear-gradient(180deg, rgba(85, 26, 139, 0.6) 0%, rgba(74, 20, 140, 0.9) 100%);
            border: 1px solid rgba(255, 255, 255, 0.4);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);

            /* INCREASED PADDING for larger look */
            padding: 2.5rem 2rem 3.5rem 2rem;

            border-radius: 6px;
            position: relative;
            margin-top: 0;
            /* Aligned to top */
        }

        /* Neon border glow */
        .hero-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            pointer-events: none;
        }

        .hero-card h2 {
            text-align: center;
            font-size: 1.5rem;
            /* Increased size */
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 8px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .guarantee-text {
            text-align: center;
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            font-size: 0.8rem;
            /* Increased size */
            font-weight: 700;
            padding: 6px 15px;
            border-radius: 4px;
            margin: 0 auto 25px auto;
            text-transform: uppercase;
            width: 100%;
        }

        .form-row {
            display: flex;
            gap: 12px;
            margin-bottom: 15px;
            /* More spacing */
        }

        .form-row input,
        .form-row select {
            width: 100%;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.6);
            color: white;
            padding: 12px;
            /* Bigger input touch area */
            border-radius: 4px;
            font-size: 0.85rem;
            outline: none;
            transition: background 0.3s;
        }

        .form-row input:focus,
        .form-row select:focus {
            background: rgba(255, 255, 255, 0.2);
            border-color: #00e5ff;
        }

        .form-row input::placeholder {
            color: rgba(255, 255, 255, 0.8);
        }

        .form-row select option {
            background: #4a148c;
            color: white;
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            margin-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            padding-top: 20px;
        }

        .price-box {
            text-align: center;
            flex: 1;
        }

        .price-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            display: block;
            margin-bottom: 6px;
            opacity: 0.9;
            font-weight: 600;
        }

        .price-tag {
            font-size: 1.6rem;
            /* Bigger price */
            font-weight: 800;
            border: 2px solid white;
            padding: 4px 15px;
            display: inline-block;
            background: transparent;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        /* --- UPDATED: Badge Hanging Overlap --- */
        .badge-container {
            position: absolute;
            /* Negative bottom pulls it down to overlap the next section */
            bottom: -140px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 25;
            /* Must be higher than countries-strip */
        }

        .badge-ribbon {


            margin-top: 20px;
            width: 200px;
            /* Made ribbon much longer to bridge the gap */
            height: 195px;
            background: #00bcd4;
            /* Darker Cyan/Blue to match reference */
            position: absolute;
            top: -20px;
            z-index: 14;
            /* Creates the flag shape at the bottom */
            clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
            box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.2);
        }

        .badge-img {
            width: 140px;
            /* Bigger Certificate */
            height: 140px;
            border-radius: 50%;
            background: white;
            border: 4px solid #00bcd4;
            z-index: 15;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
            /* Ensure the image fits nicely */
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        /* Placeholder styling for the certificate image to look like a seal */
        .badge-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* --- Countries Strip --- */
        .countries-strip {
            background: white;
            padding: 1.5rem 0;
            width: 100%;
            position: relative;
            z-index: 5;
            /* Lower than badge */
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            /* Removed large margin-top so it sits right under hero */
            margin-top: 0;
        }

        .countries-label {
            color: #7b1fa2;
            font-weight: 800;
            text-transform: uppercase;
            font-size: 1rem;
        }

        .countries-label::after {
            content: '⤵';
            display: inline-block;
            margin-left: 5px;
            transform: rotate(-90deg);
            font-size: 1.2rem;
        }

        .flags-container {
            display: flex;
            gap: 15px;
        }

        .flags-container img {
            width: 32px;
            height: 32px;
            object-fit: cover;
            border-radius: 50%;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        /* --- Main Content Section (Text + Books) --- */
        .content-section {
            padding: 5rem 8%;
            /* Increased top padding */
            position: relative;
            display: flex;
        }

        .content-text {
            width: 55%;
            z-index: 5;
            position: relative;
        }

        .content-text h2 {
            font-size: 2.2rem;
            line-height: 1.2;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            font-weight: 800;
        }

        .content-text h2 span {
            background: white;
            color: #6a1b9a;
            padding: 0 10px;
        }

        .content-text p {
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .btn-group {
            display: flex;
            gap: 15px;
        }

        .btn {
            padding: 12px 30px;
            font-weight: 800;
            text-decoration: none;
            border-radius: 4px;
            text-transform: uppercase;
            font-size: 0.9rem;
        }

        .btn-purple {
            background: #d500f9;
            color: white;
        }

        .btn-white {
            background: white;
            color: #4a148c;
        }

        /* --- The Books Image (Fixed Position) --- */
        .floating-books-container {
            position: absolute;
            right: -2%;
            top: 50%;
            transform: translateY(-50%);
            width: 35%;
            /* Increased size slightly */
            max-width: 600px;
            z-index: 1;
            pointer-events: none;
        }

        .floating-books-container img {
            width: 100%;
            height: auto;
            transform: rotate(-5deg);
        }

        /* --- Steps Section --- */
        .steps-section {
            padding: 2rem 8% 6rem 8%;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .steps-section h2 {
            font-size: 2.2rem;
            text-transform: uppercase;
            font-weight: 800;
            margin-bottom: 3rem;
            display: inline-block;
        }

        .steps-section h2 span {
            background: white;
            color: #6a1b9a;
            padding: 2px 10px;
        }

        .steps-row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            margin-top: 2rem;
        }

        .step-item {
            text-align: center;
            font-weight: 700;
            font-size: 1.1rem;
            position: relative;
        }

        .step-arrow {
            font-size: 2rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 300;
        }

        /* Responsive Fixes */
        @media (max-width: 1024px) {
            .hero-card {
                display: none;
                /* Or stack it */
            }

            .content-text {
                width: 100%;
            }

            .floating-books-container {
                opacity: 0.2;
            }
        }

