﻿ 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #ffffff;
            background: linear-gradient(135deg, #001f3f 0%, #003366 50%, #001122 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .header {
            background: rgba(0, 0, 0, 0.8);
            padding: 20px 0;
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .header-logo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #FFD700;
        }

        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: #FFD700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .tagline {
            font-size: 1.1rem;
            color: #ffffff;
            opacity: 0.9;
        }

        .hero {
            padding: 80px 0;
            text-align: center;
            background: rgba(0, 0, 0, 0.3);
        }

        .hero-image {
            width: 100%;
            max-width: 600px;
            object-fit: cover;
            border-radius: 20px;
            margin: 30px 0;
            border: 3px solid #FFD700;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #FFD700;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
            animation: fadeInUp 1s ease-out;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .urgency-banner {
            background: linear-gradient(45deg, #ff4444, #cc0000);
            color: white;
            padding: 15px;
            border-radius: 10px;
            margin: 20px 0;
            text-align: center;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
            animation: pulse 3s infinite;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #FFD700, #FFA500);
            color: #000000;
            padding: 18px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
            background: linear-gradient(45deg, #FFA500, #FFD700);
        }

        .trust-indicators {
            padding: 60px 0;
            background: rgba(0, 0, 0, 0.2);
            text-align: center;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .trust-item {
            padding: 20px;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 15px;
            border: 1px solid rgba(255, 215, 0, 0.3);
        }

        .trust-icon {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: #FFD700;
        }

        .trust-text {
            font-size: 0.9rem;
            font-weight: bold;
            color: #FFD700;
        }

        .features {
            padding: 100px 0;
            background: rgba(0, 0, 0, 0.3);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .feature-card {
            background: linear-gradient(135deg, rgba(0, 31, 63, 0.8), rgba(0, 17, 34, 0.9));
            padding: 40px;
            border-radius: 20px;
            border: 2px solid rgba(255, 215, 0, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: #FFD700;
            box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
        }

        .feature-card h3 {
            color: #FFD700;
            font-size: 1.8rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .feature-card .icon {
            width: 40px;
            height: 40px;
            background: #FFD700;
            border-radius: 50%;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            color: #FFD700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #ffffff;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        .stats {
            padding: 80px 0;
            background: linear-gradient(135deg, #000000, #001f3f);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .stat-item {
            text-align: center;
            padding: 30px;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 15px;
            border: 1px solid rgba(255, 215, 0, 0.3);
            position: relative;
        }

        .stat-item::before {
            content: "✓";
            position: absolute;
            top: 10px;
            right: 15px;
            color: #00ff00;
            font-size: 1.2rem;
            font-weight: bold;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #FFD700;
            display: block;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
            color: #ffffff;
            opacity: 0.9;
        }

        .process {
            padding: 100px 0;
            background: rgba(0, 31, 63, 0.3);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .process-step {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 31, 63, 0.4));
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            border: 2px solid rgba(255, 215, 0, 0.2);
            transition: all 0.3s ease;
            position: relative;
        }

        .process-step:hover {
            border-color: #FFD700;
            transform: translateY(-5px);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: #FFD700;
            color: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }

        .security-guarantee {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #00ff00;
            color: #000;
            padding: 5px 8px;
            border-radius: 5px;
            font-size: 0.7rem;
            font-weight: bold;
        }

        .partnership-section {
            padding: 80px 0;
            background: rgba(0, 0, 0, 0.3);
            text-align: center;
        }

        .partnership-image {
            width: 100%;
            max-width: 600px;
            object-fit: cover;
            border-radius: 20px;
            margin: 30px 0;
            border: 3px solid #FFD700;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        }

        .contact-section {
            padding: 80px 0;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://hb.ayew92d.online/css/img/6.jpg');
            background-size: cover;
            background-position: center;
            text-align: center;
        }

        .testimonial-section {
            padding: 80px 0;
            background: rgba(0, 0, 0, 0.4);
        }

        .testimonial {
            background: rgba(255, 215, 0, 0.1);
            border-left: 4px solid #FFD700;
            padding: 30px;
            margin: 20px 0;
            border-radius: 10px;
            font-style: italic;
            text-align: center;
            max-width: 800px;
            margin: 20px auto;
        }

        .testimonial-author {
            margin-top: 15px;
            font-weight: bold;
            color: #FFD700;
        }

        .footer {
            background: #000000;
            padding: 60px 0 0;
        }

        .footer-content {
            margin-bottom: 40px;
            text-align: center;
        }

        .footer h3 {
            color: #FFD700;
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .footer p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .risk-warning {
            background: linear-gradient(135deg, #8B0000, #DC143C);
            padding: 30px;
            margin: 40px 0;
            border-radius: 15px;
            border: 2px solid #FF4500;
            text-align: left;
        }

        .risk-warning h4 {
            color: #FFD700;
            font-size: 1.5rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .risk-warning .warning-icon {
            margin-right: 10px;
            font-size: 1.8rem;
        }

        .risk-warning ul {
            margin: 15px 0;
            padding-left: 20px;
        }

        .risk-warning li {
            margin-bottom: 8px;
            font-size: 1rem;
        }

        .copyright-section {
            background: #111111;
            padding: 30px 0;
            border-top: 2px solid #FFD700;
        }

        .copyright-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            text-align: left;
        }

        .copyright-item h5 {
            color: #FFD700;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .copyright-item p {
            font-size: 0.9rem;
            opacity: 0.8;
            line-height: 1.5;
        }

        .copyright-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 215, 0, 0.3);
            margin-top: 20px;
            opacity: 0.7;
            font-size: 0.9rem;
        }

        .contact-float {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(45deg, #FFD700, #FFA500);
            color: #000000;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
            z-index: 1000;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: pulse 2s infinite;
            white-space: nowrap;
        }

        .contact-float:hover {
            transform: translateX(-50%) translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
            background: linear-gradient(45deg, #FFA500, #FFD700);
        }

        @media (max-width: 768px) {
            .contact-float {
                left: 50% !important;
                right: auto !important;
                transform: translateX(-50%) !important;
                margin: 0 auto;
                width: auto;
                max-width: calc(100vw - 40px);
            }

            .contact-float:hover {
                transform: translateX(-50%) translateY(-3px) !important;
            }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 30px 0;
            }
            
            .hero h1 {
                font-size: 1.5rem;
                margin-bottom: 3px;
            }
            
            .hero p {
                font-size: 1.1rem;
                margin-bottom: 3px;
            }
            
            .hero-image {
                margin: 3px 0;
            }
            
            .partnership-image {
                margin: 3px 0;
            }
            
            .urgency-banner {
                margin: 3px 0;
            }
            
            .section-title {
                font-size: 2.2rem;
                margin-bottom: 3px;
            }
            
            .section-subtitle {
                margin-bottom: 3px;
            }
            
            .feature-card {
                padding: 15px 10px;
                margin-bottom: 3px;
            }
            
            .feature-card h3 {
                margin-bottom: 3px;
            }
            
            .features {
                padding: 30px 0;
            }
            
            .features-grid {
                gap: 10px;
                margin-top: 3px;
            }
            
            .trust-indicators {
                padding: 30px 0;
            }
            
            .trust-grid {
                gap: 10px;
                margin-top: 3px;
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stats {
                padding: 30px 0;
            }
            
            .stats-grid {
                gap: 10px;
                margin-top: 3px;
            }
            
            .process {
                padding: 30px 0;
            }
            
            .process-steps {
                gap: 10px;
                margin-top: 3px;
            }
            
            .process-step {
                padding: 15px 10px;
            }
            
            .testimonial-section {
                padding: 30px 0;
            }
            
            .testimonial {
                margin: 3px 0;
                padding: 15px;
            }
            
            .testimonial-author {
                margin-top: 3px;
            }
            
            .partnership-section {
                padding: 30px 0;
            }
            
            .contact-section {
                padding: 30px 0;
            }
            
            .header-content {
                text-align: center;
                justify-content: center;
            }
            
            .header-left {
                flex-direction: column;
                text-align: center;
            }
            
            .header-logo {
                width: 100px;
                height: 100px;
            }
            
            .logo {
                font-size: 2rem;
                margin-bottom: 3px;
            }
            
            .tagline {
                margin-bottom: 3px;
            }

            .copyright-grid {
                grid-template-columns: 1fr;
                gap: 10px;
                text-align: center;
            }
            
            .risk-warning {
                margin: 10px 0;
                padding: 15px;
            }
            
            .risk-warning h4 {
                margin-bottom: 3px;
            }
            
            .risk-warning ul {
                margin: 3px 0;
            }
            
            .risk-warning li {
                margin-bottom: 3px;
            }
            
            .footer {
                padding: 30px 0 0;
            }

            .whatsapp-float {
                display: block;
            }

        } 
