
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            overflow-x: hidden;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            transition: all 0.3s;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            color: #232d39;
        }

        .logo em {
            color: #0f98f8;
            font-style: normal;
        }

        nav ul {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        nav a {
            text-decoration: none;
            color: #232d39;
            font-weight: 500;
            font-size: 14px;
            text-transform: uppercase;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #0f98f8;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #232d39;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
            max-width: none;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://lostroncos.alwaysdata.net/bg.jpg') center center/cover no-repeat;
        }

        .hero-background::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        .hero h1 {
            font-size: 64px;
            font-weight: 800;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .hero h1 em {
            color: #ffd700;
            font-style: normal;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .btn {
            display: inline-block;
            padding: 15px 40px;
            background: #0f98f8;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.3s;
        }

        .btn:hover {
            background: #0d7ecf;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(15, 152, 248, 0.3);
        }

        /* Sections */
        section {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 36px;
            font-weight: 800;
            color: #232d39;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .section-title h2 em {
            color: #0f98f8;
            font-style: normal;
        }

        .section-title p {
            color: #7a7a7a;
            font-size: 16px;
            max-width: 600px;
            margin: 0 auto;
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text h3 {
            font-size: 28px;
            color: #232d39;
            margin-bottom: 20px;
        }

        .about-text p {
            color: #7a7a7a;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .service-card i {
            font-size: 48px;
            color: #0f98f8;
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 22px;
            color: #232d39;
            margin-bottom: 15px;
        }

        .service-card p {
            color: #7a7a7a;
            line-height: 1.6;
        }

        /* Photo Carousel Section */
        .carousel-section {
            background: #f7f7f7;
            padding: 100px 20px;
            max-width: none;
        }

        .carousel-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            gap: 20px;
            transition: transform 0.5s ease;
        }

        .carousel-slide {
            min-width: calc(33.333% - 14px);
            aspect-ratio: 4/3;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            position: relative;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .carousel-slide:hover img {
            transform: scale(1.05);
        }

        .carousel-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .carousel-btn {
            background: #0f98f8;
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            box-shadow: 0 3px 10px rgba(15, 152, 248, 0.3);
        }

        .carousel-btn:hover {
            background: #0d7ecf;
            transform: scale(1.1);
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: #0f98f8;
            width: 30px;
            border-radius: 6px;
        }

        /* Payment Verification Section */
        .payment-section {
            background: linear-gradient(135deg, #0f98f8 0%, #0d7ecf 100%);
            padding: 100px 20px;
            max-width: none;
        }

        .payment-container {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .payment-container h2 {
            text-align: center;
            color: #232d39;
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .payment-container h2 em {
            color: #0f98f8;
            font-style: normal;
        }

        .payment-container > p {
            text-align: center;
            color: #7a7a7a;
            margin-bottom: 40px;
            font-size: 15px;
        }

        .payment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group label {
            color: #232d39;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-group input {
            padding: 15px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s;
            font-family: 'Poppins', sans-serif;
        }

        .form-group input:focus {
            outline: none;
            border-color: #0f98f8;
            box-shadow: 0 0 0 3px rgba(15, 152, 248, 0.1);
        }

        .verify-btn {
            padding: 15px 40px;
            background: #0f98f8;
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 10px;
        }

        .verify-btn:hover {
            background: #0d7ecf;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(15, 152, 248, 0.4);
        }

        .payment-result {
            margin-top: 30px;
            padding: 25px;
            border-radius: 10px;
            display: none;
            animation: slideIn 0.5s ease;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .payment-result.success {
            background: #d4edda;
            border: 2px solid #28a745;
            color: #155724;
        }

        .payment-result.pending {
            background: #fff3cd;
            border: 2px solid #ffc107;
            color: #856404;
        }

        .payment-result.error {
            background: #f8d7da;
            border: 2px solid #dc3545;
            color: #721c24;
        }

        .payment-result h3 {
            margin-bottom: 15px;
            font-size: 22px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .payment-result p {
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .payment-result strong {
            font-weight: 700;
        }

        .payment-info {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            margin-top: 15px;
            border-left: 4px solid #0f98f8;
        }
        
        /* Check Debt Section */
        .health-form-section {
            background: #f7f7f7;
            text-align: center;
            max-width: none;
        }

        .download-card {
            background: white;
            max-width: 600px;
            margin: 0 auto;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .download-card i {
            font-size: 64px;
            color: #0f98f8;
            margin-bottom: 20px;
        }

        .download-card h3 {
            font-size: 24px;
            color: #232d39;
            margin-bottom: 15px;
        }

        .download-card p {
            color: #7a7a7a;
            margin-bottom: 30px;
        }

        /* Footer */
        footer {
            background: #232d39;
            color: white;
            text-align: center;
            padding: 30px 20px;
        }

        footer p {
            color: rgba(255,255,255,0.7);
        }

        footer em {
            color: #0f98f8;
            font-style: normal;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            nav ul {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }

            nav ul.active {
                display: flex;
            }

            .hero h1 {
                font-size: 36px;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .carousel-slide {
                min-width: 100%;
            }

            .carousel-controls {
                gap: 10px;
            }

            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .check-debt, .download-card {
                padding: 40px 20px;
            }
        }