 :root {
            --primary-color: #7F56D9;
            --text-color: #333;
            --background-color: #F9F5FF;
            --white: #FFFFFF;
            --section-padding: 80px;
        }

        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            color: var(--text-color);
            background-color: var(--white);
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* --- Header --- */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            z-index: 100;
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary-color);
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(127, 86, 217, 0.3);
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(127, 86, 217, 0.4);
        }

        /* --- Hero Section --- */
        #hero {
            padding: var(--section-padding) 0;
            background:linear-gradient(to right,#76e9d09f, #385fcad3);
        }

        #hero .container {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        #hero .hero-text {
            flex: 1;
        }

        #hero h1 {
            font-size: 52px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--text-color);
        }

        #hero p {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 30px;
            color: #555;
        }

        .app-buttons img {
            height: 50px;
            margin-right: 15px;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .app-buttons img:hover {
            transform: scale(1.05);
        }

        #hero .hero-image {
            flex: 1;
            text-align: center;
        }

        #hero .hero-image img {
            max-width: 380px;
            width: 100%;
            animation: float 4s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0px);
            }
        }


        /* --- Features Section --- */
        #features {
            padding: var(--section-padding) 0;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 80px;
            margin-bottom: var(--section-padding);
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .feature.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .feature:last-child {
            margin-bottom: 0;
        }

        .feature:nth-child(even) {
            flex-direction: row-reverse;
        }

        .feature-text {
            flex: 1;
        }

        .feature-text h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .feature-text p {
            font-size: 16px;
            line-height: 1.7;
            color: #555;
        }

        .feature-image {
            flex: 1;
            text-align: center;
        }

        .feature-image img {
            max-width: 350px;
            width: 100%;
            border-radius: 25px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        /* --- CTA Section --- */
        #cta {
            background-color: var(--background-color);
            padding: var(--section-padding) 0;
            text-align: center;
        }

        #cta h2 {
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        #cta p {
            font-size: 18px;
            color: #555;
            margin-bottom: 30px;
        }

        /* --- Footer --- */
        footer {
            background-color: #1D2939;
            color: #EAECF0;
            padding: 40px 0;
            text-align: center;
        }

        footer p {
            margin: 0;
            font-size: 14px;
            color: #D0D5DD;
        }

        /* --- Responsive --- */
        @media (max-width: 992px) {

            #hero .container,
            .feature {
                flex-direction: column;
                text-align: center;
            }

            .feature:nth-child(even) {
                flex-direction: column;
            }

            .feature-image,
            #hero .hero-image {
                margin-bottom: 30px;
            }

            .feature-text {
                order: 2;
            }

            #hero .hero-text {
                order: 2;
            }
        }

        @media (max-width: 768px) {
            :root {
                --section-padding: 60px;
            }

            #hero h1 {
                font-size: 40px;
            }

            .feature-text h2 {
                font-size: 32px;
            }

            #cta h2 {
                font-size: 36px;
            }

            .app-buttons {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .app-buttons img {
                margin-right: 0;
            }
        }