
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
               background: linear-gradient(135deg, #4A00E0 0%, #8E2DE2 100%);
            min-height: 100vh;
            overflow-x: hidden; /* Prevent horizontal scroll during animations */
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* --- ADJUSTED HERO SECTION CSS STARTS HERE --- */
        .hero-section {
            padding: 100px 20px; /* Increased top/bottom padding for more breathing room */
            background: linear-gradient(135deg, #4A00E0 0%, #8E2DE2 100%); /* Retained your vibrant gradient */
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            /* Animation already present, keeping it */
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInSlideUp 0.8s ease-out forwards;
            animation-delay: 0.1s;
        }

        .hero-section h1 {
            font-size: 4.2rem; /* Significantly larger for more presence on desktop */
            font-weight: 800;
            margin-bottom: 25px;
            line-height: 1.15; /* Tighter line-height for a stronger headline */
            text-shadow: 4px 4px 8px rgba(0,0,0,0.4); /* More pronounced shadow */
            max-width: 900px; /* Constrain width for readability on very wide screens */
            margin-left: auto;
            margin-right: auto;
        }

        .hero-section .subtitle {
            font-size: 1.8rem; /* Larger subtitle */
            margin-bottom: 40px; /* More space below subtitle */
            opacity: 0.95;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-section .value-props {
            display: flex;
            justify-content: center;
            gap: 30px; /* Space between value propositions */
            margin-bottom: 50px; /* More space above the button */
            flex-wrap: wrap; /* Allows wrapping on smaller screens */
            max-width: 900px; /* Align with h1's max-width */
            margin-left: auto;
            margin-right: auto;
        }

        .hero-section .value-props p {
            font-size: 1.3rem; /* Slightly larger text for value props */
            font-weight: 500;
            background: rgba(255, 255, 255, 0.2); /* Slightly more opaque for better contrast */
            padding: 12px 25px; /* Slightly more padding */
            border-radius: 8px; /* Slightly more rounded corners */
            backdrop-filter: blur(8px); /* Stronger frosty glass effect */
            display: flex;
            align-items: center;
            gap: 10px; /* More space between checkmark and text */
            box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Subtle shadow for depth */
        }
        /* No need for ::before content here, as the checkmark is directly in the HTML */

        .hero-cta-button {
            background: #FFD700; /* Bright gold color for the button */
            color: #2c3e50; /* Darker text for even better contrast */
            padding: 20px 45px; /* Larger button */
            border-radius: 12px; /* More rounded button */
            font-size: 1.4rem; /* Larger font on button */
            font-weight: 800; /* Bolder button text */
            text-transform: uppercase;
            letter-spacing: 2px; /* Increased letter spacing */
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3); /* More pronounced shadow */
        }

        .hero-cta-button:hover {
            transform: translateY(-5px) scale(1.03); /* More active hover effect */
            box-shadow: 0 15px 30px rgba(0,0,0,0.4);
            background: #FFEA00;
        }

        /* Media queries for responsiveness */
        @media (max-width: 1024px) {
            .hero-section h1 {
                font-size: 3.5rem;
            }
            .hero-section .subtitle {
                font-size: 1.5rem;
            }
            .hero-section .value-props p {
                font-size: 1.2rem;
                padding: 10px 20px;
            }
            .hero-cta-button {
                font-size: 1.25rem;
                padding: 18px 40px;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 15px; /* Adjusted padding for medium screens */
            }
            .hero-section h1 {
                font-size: 2.8rem;
                margin-bottom: 20px;
            }
            .hero-section .subtitle {
                font-size: 1.3rem;
                margin-bottom: 30px;
            }
            .hero-section .value-props {
                flex-direction: column; /* Stack value props vertically */
                gap: 15px;
            }
            .hero-section .value-props p {
                font-size: 1.1rem;
                padding: 10px 15px;
            }
            .hero-cta-button {
                font-size: 1.1rem;
                padding: 15px 30px;
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                padding: 60px 10px; /* Tighter padding for small screens */
            }
            .hero-section h1 {
                font-size: 2.2rem;
            }
            .hero-section .subtitle {
                font-size: 1.05rem;
            }
            .hero-section .value-props {
                gap: 10px;
            }
            .hero-section .value-props p {
                font-size: 1rem;
                padding: 8px 12px;
            }
            .hero-cta-button {
                font-size: 1rem;
                padding: 12px 25px;
                letter-spacing: 1px;
            }
        }
        /* --- ADJUSTED HERO SECTION CSS ENDS HERE --- */


        .main-content {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }

        .features-section {
            margin-bottom: 50px;
            /* Animation */
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInSlideUp 0.8s ease-out forwards;
            animation-delay: 0.3s;
        }

        .features-section h2 {
            font-size: 2rem;
            color: #2d3748;
            margin-bottom: 30px;
            text-align: center;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            padding: 15px;
            background: #f7fafc;
            border-radius: 10px;
            border-left: 4px solid #667eea;
            /* Animation */
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInSlideUp 0.8s ease-out forwards;
        }
        .feature-item:nth-child(1) { animation-delay: 0.4s; }
        .feature-item:nth-child(2) { animation-delay: 0.5s; }
        .feature-item:nth-child(3) { animation-delay: 0.6s; }
        .feature-item:nth-child(4) { animation-delay: 0.7s; }
        .feature-item:nth-child(5) { animation-delay: 0.8s; }
        .feature-item:nth-child(6) { animation-delay: 0.9s; }
        .feature-item:nth-child(7) { animation-delay: 1.0s; }
        .feature-item:nth-child(8) { animation-delay: 1.1s; }


        .feature-item span {
            font-size: 1.5rem;
            margin-right: 15px;
        }

        .pricing-section {
            margin-bottom: 50px;
            /* Animation */
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInSlideUp 0.8s ease-out forwards;
            animation-delay: 1.3s;
        }

        .pricing-section h2 {
            font-size: 2.5rem;
            color: #2d3748;
            margin-bottom: 40px;
            text-align: center;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .pricing-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 2px solid #e2e8f0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            /* Animation */
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInSlideUp 0.8s ease-out forwards;
        }
        .pricing-card:nth-child(1) { animation-delay: 1.4s; }
        .pricing-card:nth-child(2) { animation-delay: 1.6s; }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .pricing-card.premium {
            border-color: #667eea;
            position: relative;
        }

        .pricing-card.premium::before {
            content: "🔥 MOST POPULAR";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 10px;
            text-align: center;
            font-weight: bold;
            font-size: 0.9rem;
        }

        .pricing-card.premium .card-content {
            margin-top: 20px;
        }

        .plan-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .plan-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 10px;
        }

        .plan-subtitle {
            color: #718096;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .price {
            font-size: 3rem;
            font-weight: 700;
            color: #667eea;
            margin-bottom: 10px;
        }

        .original-price {
            text-decoration: line-through;
            color: #a0aec0;
            font-size: 1.2rem;
            margin-left: 10px;
        }

        .price-note {
            color: #718096;
            font-size: 0.9rem;
        }

        .features-list {
            list-style: none;
            margin-bottom: 30px;
        }

        .features-list li {
            padding: 8px 0;
            display: flex;
            align-items: center;
        }

        .features-list li::before {
            content: "✅";
            margin-right: 10px;
            font-size: 1.1rem;
        }

        .premium-features {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 2px solid #e2e8f0;
        }

        .premium-features h4 {
            color: #667eea;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .premium-features ul {
            list-style: none;
            padding-left: 20px; /* Indent the entire list from the left */
        }

        .premium-features ul li {
            display: flex; /* Use flexbox for alignment */
            align-items: flex-start; /* Align icon and text to the top */
            margin-bottom: 8px; /* Add some space between list items */
            padding-left: 0; /* Reset default padding if any from parent UL */
        }

        .premium-features ul li::before {
            content: "✅";
            margin-right: 10px; /* Space between icon and text */
            color: #667eea;
            flex-shrink: 0; /* Prevent the icon from shrinking */
        }

        .cta-button {
            width: 100%;
            padding: 15px 30px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
        }

        .offer-banner {
            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            margin-bottom: 40px;
            animation: pulse 2s infinite;
            /* Animation */
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInSlideUp 0.8s ease-out forwards, pulse 2s infinite;
            animation-delay: 1.8s; /* Adjusted delay */
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }

        .guarantee-section {
            background: #f0fff4;
            border: 2px solid #68d391;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 40px;
            text-align: center;
            /* Animation */
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInSlideUp 0.8s ease-out forwards;
            animation-delay: 2.0s; /* Adjusted delay */
        }

        .guarantee-section h3 {
            color: #2f855a;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .faq-section {
            margin-top: 50px;
            /* Animation */
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInSlideUp 0.8s ease-out forwards;
            animation-delay: 2.2s; /* Adjusted delay */
        }

        .faq-section h2 {
            font-size: 2rem;
            color: #2d3748;
            margin-bottom: 30px;
            text-align: center;
        }

        .faq-item {
            background: #f7fafc;
            border-radius: 10px;
            margin-bottom: 20px;
            overflow: hidden;
            /* Animation */
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInSlideUp 0.6s ease-out forwards;
        }
        .faq-item:nth-child(1) { animation-delay: 2.3s; }
        .faq-item:nth-child(2) { animation-delay: 2.4s; }
        .faq-item:nth-child(3) { animation-delay: 2.5s; }
        .faq-item:nth-child(4) { animation-delay: 2.6s; }


        .faq-question {
            padding: 20px;
            background: #e2e8f0;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: #cbd5e0;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-answer.active {
            padding: 20px;
            max-height: 200px; /* Adjust as needed for content */
        }

        .faq-toggle {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-toggle.active {
            transform: rotate(45deg);
        }

        /* Keyframes for animations */
        @keyframes fadeInSlideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* Keyframes for animations */
        @keyframes fadeInSlideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }

            .hero-section p {
                font-size: 1.1rem;
            }

            .main-content {
                padding: 20px;
            }

            .pricing-cards {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .price {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 10px;
            }

            .hero-section {
                padding: 40px 10px;
            }

            .pricing-card {
                padding: 30px 20px;
            }
        }
   