:root {
            --primary-color: #00d4aa;
            --secondary-color: #6366f1;
            --dark-color: #1a1a1a;
            --text-gray: #666;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

        /* Hero Section with Image Background */
        .hero-section {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.93) 0%, rgba(118, 75, 162, 0.93) 100%),
                        url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1600&q=80') center/cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: moveBackground 20s linear infinite;
        }

        @keyframes moveBackground {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 40px 20px;
        }

        .hero-text {
            color: white;
        }

        .hero-image-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image {
            width: 100%;
            max-width: 550px;
            filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
            animation: floatImage 3s ease-in-out infinite;
            border-radius: 20px;
        }

        @keyframes floatImage {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .floating-badge {
            position: absolute;
            background: white;
            padding: 15px 25px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            animation: float 3s ease-in-out infinite;
        }

        .badge-1 {
            top: 10%;
            right: -10%;
            animation-delay: 0s;
        }

        .badge-2 {
            bottom: 20%;
            left: -10%;
            animation-delay: 1s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(-5deg);
            }
            50% {
                transform: translateY(-15px) rotate(5deg);
            }
        }

        .logo {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 30px;
            letter-spacing: 2px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 300;
            animation: fadeInUp 1.2s ease;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
        }

        .hero-description {
            font-size: 1.1rem;
            margin-bottom: 40px;
            opacity: 0.95;
            animation: fadeInUp 1.4s ease;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cta-button {
            display: inline-block;
            padding: 20px 50px;
            background: var(--primary-color);
            color: white;
            font-size: 1.3rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4);
            animation: fadeInUp 1.6s ease;
            border: 3px solid transparent;
        }

        .cta-button:hover {
            background: #00b894;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 212, 170, 0.6);
            color: white;
        }

        /* Features Section */
        .features-section {
            padding: 100px 20px;
            background: #f8f9fa;
            position: relative;
        }

        .feature-card {
            text-align: center;
            padding: 40px 30px;
            background: white;
            border-radius: 20px;
            transition: all 0.4s ease;
            height: 100%;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .feature-icon {
            font-size: 4rem;
            margin-bottom: 25px;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark-color);
        }

        .feature-description {
            color: var(--text-gray);
            font-size: 1rem;
            line-height: 1.8;
        }

        /* Image Section with Stats */
        .image-stats-section {
            padding: 100px 20px;
            background: white;
        }

        .stats-image {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }

        .stats-image:hover {
            transform: scale(1.02);
        }

        /* Stats Section */
        .stats-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            top: -100px;
            right: -100px;
        }

        .stats-section::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(255,255,255,0.08);
            border-radius: 50%;
            bottom: -50px;
            left: -50px;
        }

        .stat-item {
            text-align: center;
            padding: 30px;
            position: relative;
            z-index: 1;
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 10px;
            display: block;
            background: linear-gradient(135deg, #fff, rgba(255,255,255,0.8));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 1.2rem;
            opacity: 0.95;
        }

        /* How It Works Section with Images */
        .how-it-works {
            padding: 100px 20px;
            background: #f8f9fa;
        }

        .step-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .step-card:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 800;
            color: white;
            flex-shrink: 0;
        }

        .step-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark-color);
        }

        .step-content p {
            color: var(--text-gray);
            margin: 0;
            line-height: 1.6;
        }

        /* Trust Section with Logos */
        .trust-section {
            padding: 100px 20px;
            background: white;
        }

        .trust-badge {
            text-align: center;
            padding: 30px;
            background: #f8f9fa;
            border-radius: 15px;
            transition: all 0.3s ease;
            height: 100%;
        }

        .trust-badge:hover {
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }

        .trust-badge div {
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.3s ease;
        }

        .trust-badge:hover div {
            filter: grayscale(0%);
            opacity: 1;
        }

        /* Testimonial Section with Images */
        .testimonial-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
        }

        .testimonial-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .testimonial-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .testimonial-info h4 {
            margin: 0;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark-color);
        }

        .testimonial-info .stars {
            color: #ffc107;
            font-size: 1rem;
        }

        .testimonial-text {
            color: var(--text-gray);
            line-height: 1.8;
            font-style: italic;
        }

        /* CTA Section with Background Image */
        .cta-section {
            padding: 120px 20px;
            background: linear-gradient(135deg, rgba(0, 212, 170, 0.95) 0%, rgba(0, 184, 148, 0.95) 100%),
                        url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1600&q=80') center/cover;
            color: white;
            text-align: center;
            position: relative;
        }

        .cta-section h2 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }

        .cta-section p {
            font-size: 1.4rem;
            margin-bottom: 40px;
            opacity: 0.95;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
        }

        .cta-button-secondary {
            display: inline-block;
            padding: 22px 55px;
            background: white;
            color: var(--primary-color);
            font-size: 1.4rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .cta-button-secondary:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
            color: var(--primary-color);
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 60px;
            color: var(--dark-color);
            position: relative;
            padding-bottom: 20px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        .highlight {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Footer */
        footer {
            background: var(--dark-color);
            color: white;
            padding: 60px 20px 30px;
        }

        .footer-logo {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .social-links a {
            display: inline-flex;
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            margin: 0 10px;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-5px);
        }

        /* Additional hover styles for social icons */
        nav.social-links a:hover {
            background: var(--primary-color) !important;
        }

        /* FAQ Section Styles */
        .faq-item {
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 15px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .faq-item:hover {
            border-color: var(--primary-color);
            box-shadow: 0 5px 20px rgba(0, 212, 170, 0.1);
        }

        .faq-item summary {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--dark-color);
            list-style: none;
            user-select: none;
            transition: all 0.3s ease;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary:hover {
            color: var(--primary-color);
        }

        .faq-question {
            flex: 1;
            padding-right: 20px;
        }

        .faq-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .faq-icon svg {
            width: 100%;
            height: 100%;
        }

        .faq-item[open] .faq-icon {
            transform: rotate(180deg);
        }

        .faq-item[open] summary {
            color: var(--primary-color);
            border-bottom: 2px solid #f8f9fa;
        }

        .faq-answer {
            padding: 0 30px 25px 30px;
            color: var(--text-gray);
            line-height: 1.8;
            animation: fadeIn 0.3s ease;
        }

        .faq-answer p {
            margin-bottom: 15px;
        }

        .faq-answer p:last-child {
            margin-bottom: 0;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero-image-container {
                margin-top: 40px;
            }

            .floating-badge {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                min-height: auto;
                padding: 60px 0;
            }

            .hero-content {
                padding: 20px 15px;
            }

            .logo {
                font-size: 2.5rem;
                margin-bottom: 20px;
            }

            .hero-title {
                font-size: 2rem;
                margin-bottom: 15px;
                line-height: 1.3;
            }

            .hero-subtitle {
                font-size: 1.1rem;
                margin-bottom: 12px;
            }

            .hero-description {
                font-size: 0.95rem;
                margin-bottom: 30px;
            }

            .cta-button {
                padding: 16px 40px;
                font-size: 1rem;
                width: 100%;
                max-width: 350px;
                display: block;
                margin: 0 auto;
            }

            .hero-image {
                max-width: 100%;
                margin-top: 30px;
            }

            .hero-text {
                text-align: center;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .cta-section h2 {
                font-size: 2.2rem;
            }

            .cta-section p {
                font-size: 1.1rem;
            }

            .cta-button-secondary {
                padding: 18px 40px;
                font-size: 1.1rem;
                width: 100%;
                max-width: 350px;
            }

            .step-card {
                flex-direction: column;
                text-align: center;
            }

            .section-title {
                font-size: 2rem;
            }

            .feature-title {
                font-size: 1.3rem;
            }

            .stats-image {
                margin-bottom: 30px;
            }

            .testimonial-card {
                margin-bottom: 20px;
            }

            .faq-item summary {
                padding: 20px 20px;
                font-size: 1rem;
            }

            .faq-answer {
                padding: 0 20px 20px 20px;
                font-size: 0.95rem;
            }

            .trust-badge {
                padding: 15px;
            }
        }

        @media (max-width: 576px) {
            .logo {
                font-size: 2rem;
            }

            .hero-title {
                font-size: 1.75rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .hero-description {
                font-size: 0.9rem;
            }

            .cta-button {
                padding: 14px 30px;
                font-size: 0.95rem;
            }

            .section-title {
                font-size: 1.75rem;
                margin-bottom: 40px;
            }

            .feature-icon {
                font-size: 3rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .stat-label {
                font-size: 1rem;
            }

            .step-number {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .step-content h3 {
                font-size: 1.3rem;
            }

            .cta-section h2 {
                font-size: 1.8rem;
            }

            .cta-section p {
                font-size: 1rem;
            }

            .cta-button-secondary {
                padding: 16px 35px;
                font-size: 1rem;
            }

            .footer-logo {
                font-size: 2rem;
            }

            nav.social-links a {
                width: 45px;
                height: 45px;
                margin: 0 5px;
            }
        }