
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow-x: hidden;
            background: #FFFFFF;
        }

        /* ============================================
           DOWNLOAD PAGE HERO SECTION
        ============================================ */
        .download-hero-section {
            background: linear-gradient(135deg, #FFFAE4 0%, #FFFAE4 100%);
            padding: 8rem 2rem 6rem;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        /* Background decorative elements */
        .download-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.05;
            background-image: 
                radial-gradient(circle at 25% 25%, #4A90E2 2px, transparent 2px),
                radial-gradient(circle at 75% 75%, #FFD700 2px, transparent 2px);
            background-size: 60px 60px;
            pointer-events: none;
        }

        .download-hero-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 10;
        }

        /* Top Badge */
        .download-top-badge {
            text-align: center;
            margin-bottom: 3rem;
        }

        .download-badge-text {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            /* background: linear-gradient(135deg, #FFD700 0%, #FDB931 100%); */
            color: #1A202C;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-family: 'Outfit', sans-serif;
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            /* box-shadow: 0 10px 35px rgba(255, 215, 0, 0.4); */
            /* animation: badge-bounce 2s ease-in-out infinite; */
        }

        /* @keyframes badge-bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        } */

        .download-badge-icon {
            font-size: 1.5rem;
        }

        /* Two Column Grid */
        .download-content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
            margin-top: 3rem;
        }

        /* ============================================
           LEFT SIDE - DOWNLOAD CARD
        ============================================ */
        .download-card-wrapper {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .download-card {
            background: white;
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 20px 80px rgba(0, 0, 0, 0.12);
            border: 3px solid #E8F4F8;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .download-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #4A90E2, #50C9CE, #FFD700);
        }

        /* Software Icon */
        .download-software-icon {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #4A90E2 0%, #50C9CE 100%);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 4rem;
            box-shadow: 0 15px 50px rgba(74, 144, 226, 0.3);
        }

        .download-software-name {
            font-family: 'Outfit', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: #1A202C;
            margin-bottom: 0.8rem;
        }

        .download-software-tagline {
            font-size: 1.15rem;
            color: #4A5568;
            font-weight: 600;
            margin-bottom: 2rem;
        }

        /* Version Badge */
        .download-version-badge {
            display: inline-block;
            background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
            color: #166534;
            padding: 0.8rem 2rem;
            border-radius: 15px;
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            border: 2px solid #86EFAC;
        }

        /* Download Button */
        .download-btn-main {
            width: 100%;
            padding: 1.6rem 3rem;
            font-family: 'Outfit', sans-serif;
            font-size: 1.3rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background: linear-gradient(135deg, #4A90E2 0%, #50C9CE 100%);
            color: white;
            border: none;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 12px 40px rgba(74, 144, 226, 0.4);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
        }

        .download-btn-main::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 ease;
        }

        .download-btn-main:hover::before {
            left: 100%;
        }

        .download-btn-main:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 60px rgba(74, 144, 226, 0.5);
        }

        .download-btn-icon {
            font-size: 1.5rem;
        }

        /* Download Info */
        .download-info-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 2px solid #E8F4F8;
        }

        .download-info-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 1rem;
            color: #4A5568;
            font-weight: 600;
        }

        .download-info-icon {
            color: #22C55E;
            font-size: 1.2rem;
        }

        /* System Requirements Card */
        .download-system-card {
            background: linear-gradient(135deg, #FFFAE4 0%, #FFF5E1 100%);
            padding: 2rem;
            border-radius: 20px;
            border: 2px solid #FFD700;
        }

        .download-system-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.3rem;
            font-weight: 800;
            color: #1A202C;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .download-system-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .download-system-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 0.95rem;
            color: #4A5568;
            font-weight: 600;
        }

        .download-system-bullet {
            width: 6px;
            height: 6px;
            background: #FFD700;
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* ============================================
           RIGHT SIDE - TRIAL FORM
        ============================================ */
        .download-trial-section {
            background: white;
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 20px 80px rgba(0, 0, 0, 0.12);
            border: 3px solid #E8F4F8;
            position: sticky;
            top: 100px;
        }

        .download-trial-heading {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 900;
            color: #1A202C;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .download-trial-highlight {
            background: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .download-trial-subtitle {
            font-size: 1.1rem;
            color: #4A5568;
            font-weight: 600;
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }

        /* Form Title */
        .form-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: #1A202C;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid #E8F4F8;
        }

        /* Form Styling */
        .form-group {
            margin-bottom: 1.8rem;
        }

        .form-group label {
            display: block;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: #1A202C;
            margin-bottom: 0.6rem;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 1rem 1.2rem;
            font-size: 1rem;
            font-weight: 500;
            border: 2px solid #E8F4F8;
            border-radius: 12px;
            background: #F7FAFC;
            color: #1A202C;
            transition: all 0.3s ease;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #4A90E2;
            background: white;
            box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
        }

        .form-group input::placeholder {
            color: #A0AEC0;
        }

        .form-group input[readonly] {
            background: #E8F4F8;
            cursor: not-allowed;
            font-weight: 600;
            color: #4A90E2;
        }

        .form-group select {
            cursor: pointer;
        }

        /* Submit Button */
        .btn-buy {
            width: 100%;
            padding: 1.4rem 2rem;
            font-family: 'Outfit', sans-serif;
            font-size: 1.2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
            color: #1A202C;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
            position: relative;
            overflow: hidden;
        }

        .btn-buy::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.5s ease;
        }

        .btn-buy:hover::before {
            left: 100%;
        }

        .btn-buy:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 45px rgba(255, 215, 0, 0.6);
        }

        /* ============================================
           RESPONSIVE DESIGN
        ============================================ */
        @media (max-width: 1024px) {
            .download-content-grid {
                gap: 3rem;
            }

            .download-trial-section {
                position: static;
            }

            .download-card {
                padding: 2.5rem;
            }

            .download-software-name {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .download-hero-section {
                padding: 6rem 1.5rem 4rem;
                min-height: auto;
            }

            .download-content-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .download-badge-text {
                font-size: 1rem;
                padding: 0.8rem 1.8rem;
            }

            .download-card {
                padding: 2rem;
            }

            .download-software-icon {
                width: 100px;
                height: 100px;
                font-size: 3.5rem;
            }

            .download-software-name {
                font-size: 2rem;
            }

            .download-version-badge {
                font-size: 1.15rem;
                padding: 0.7rem 1.5rem;
            }

            .download-btn-main {
                padding: 1.4rem 2rem;
                font-size: 1.15rem;
            }

            .download-trial-section {
                padding: 2.5rem;
            }

            .download-trial-heading {
                font-size: clamp(1.8rem, 5vw, 2.5rem);
            }

            .download-trial-subtitle {
                font-size: 1rem;
            }

            .form-title {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .download-hero-section {
                padding: 5rem 1rem 3rem;
            }

            .download-badge-text {
                font-size: 0.9rem;
                padding: 0.7rem 1.5rem;
            }

            .download-badge-icon {
                font-size: 1.2rem;
            }

            .download-card {
                padding: 1.8rem;
            }

            .download-software-icon {
                width: 90px;
                height: 90px;
                font-size: 3rem;
                margin-bottom: 1.5rem;
            }

            .download-software-name {
                font-size: 1.8rem;
            }

            .download-software-tagline {
                font-size: 1rem;
            }

            .download-version-badge {
                font-size: 1.05rem;
                padding: 0.6rem 1.2rem;
                margin-bottom: 2rem;
            }

            .download-btn-main {
                padding: 1.2rem 1.5rem;
                font-size: 1.05rem;
            }

            .download-system-card {
                padding: 1.5rem;
            }

            .download-trial-section {
                padding: 2rem;
            }

            .download-trial-heading {
                font-size: clamp(1.6rem, 6vw, 2.2rem);
            }

            .form-group {
                margin-bottom: 1.5rem;
            }

            .form-group input,
            .form-group select {
                padding: 0.9rem 1rem;
                font-size: 0.95rem;
            }

            .btn-buy {
                padding: 1.2rem 1.5rem;
                font-size: 1.1rem;
            }
        }

        @media (min-width: 1440px) {
            .download-hero-container {
                max-width: 1600px;
            }

            .download-hero-section {
                padding: 8rem 3rem 6rem;
            }
        }

    /* What's New Section */
    .whats-new-section {
        background: linear-gradient(135deg, #1A6B8C 0%, #1E7A9E 100%);
        padding: 6rem 2rem;
        position: relative;
        overflow: hidden;
    }

    .whats-new-container {
        max-width: 1400px;
        margin: 0 auto;
        width: 100%;
    }

    /* Section Heading */
    .whats-new-heading {
        font-family: 'Outfit', sans-serif;
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 700;
        color: white;
        margin-bottom: 4rem;
    }

    /* Feature Cards Grid */
    .whats-new-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    /* Individual Feature Card */
    .whats-new-card {
        background: linear-gradient(135deg, #E8F4F8 0%, #D4E9F7 100%);
        padding: 2.5rem 2rem;
        border-radius: 15px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .whats-new-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
        background: linear-gradient(135deg, #F0F9FC 0%, #E0F2F7 100%);
    }

    /* Card Icon */
    .whats-new-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #4A90E2 0%, #50C9CE 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
    }

    /* Card Title */
    .whats-new-card-title {
        font-family: 'Outfit', sans-serif;
        font-size: 1.3rem;
        font-weight: 800;
        color: #1A202C;
        line-height: 1.3;
        margin: 0;
    }

    /* Card Description */
    .whats-new-card-desc {
        font-size: 1rem;
        line-height: 1.7;
        color: #4A5568;
        font-weight: 500;
        margin: 0;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .whats-new-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.8rem;
        }
    }

    @media (max-width: 768px) {
        .whats-new-section {
            padding: 4rem 1.5rem;
        }

        .whats-new-heading {
            font-size: clamp(2rem, 6vw, 3.5rem);
            margin-bottom: 3rem;
        }

        .whats-new-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .whats-new-card {
            padding: 2rem 1.5rem;
        }

        .whats-new-icon {
            width: 55px;
            height: 55px;
            font-size: 1.8rem;
        }

        .whats-new-card-title {
            font-size: 1.2rem;
        }

        .whats-new-card-desc {
            font-size: 0.95rem;
        }
    }

    @media (max-width: 480px) {
        .whats-new-section {
            padding: 3rem 1rem;
        }

        .whats-new-heading {
            font-size: clamp(1.8rem, 7vw, 3rem);
            margin-bottom: 2.5rem;
        }

        .whats-new-card {
            padding: 1.8rem 1.3rem;
        }

        .whats-new-icon {
            width: 50px;
            height: 50px;
            font-size: 1.6rem;
        }

        .whats-new-card-title {
            font-size: 1.15rem;
        }

        .whats-new-card-desc {
            font-size: 0.9rem;
        }
    }

    @media (min-width: 1440px) {
        .whats-new-container {
            max-width: 1600px;
        }

        .whats-new-section {
            padding: 7rem 3rem;
        }

        .whats-new-grid {
            gap: 2.5rem;
        }
    }
