* { margin: 0; padding: 0; box-sizing: border-box; }
        html, body { height: 100%; }

        body {
            overflow-x: hidden !important;
            font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
            color: #fff;
            background-image: url('/images/img-webp/jeremiah.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
        }

        .hero {
            text-align: center;
            color: #ffffff;
            padding: 140px 20px 70px;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.52));
        }
        .hero-text { display: flex; flex-direction: column; align-items: center; gap: 20px; margin-bottom: 28px; }
        .hero-h1 {
            font-size: 3.2rem; font-weight: 700;
            background: none;
            color: #eaf0ff !important;
            -webkit-text-fill-color: currentColor !important;
            position: static !important;
            top: auto !important;
            left: auto !important;
            right: auto !important;
            display: block;
            margin-top: 0 !important;
            opacity: 1 !important;
            transform: none !important;
            margin-bottom: 8px; line-height: 1.2;
        }
        .hero-p {
            font-size: 1.2rem; font-weight: 400; color: #e5e7eb;
            line-height: 1.7;
        }

        .hero-cta {
            display: flex; justify-content: center; gap: 20px; margin: 12px 0 0;
            align-items: center; flex-wrap: wrap;
        }

        main {
            min-height: 100vh;
            background-color: rgba(0, 0, 0, 0.82);
            text-align: left;
            padding-top: 20px;
            padding-bottom: 50px;
        }

        .content-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        .content-section {
            background: rgba(2, 10, 34, 0.9);
            border-radius: 20px;
            margin-bottom: 26px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(70, 87, 237, 0.2);
            padding: 36px;
        }

        .section-title {
            font-size: 2rem; font-weight: 700;
            background: linear-gradient(135deg, #4657ed, #06b6d4);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
            margin-bottom: 18px;
        }

        .section-content { font-size: 1.05rem; line-height: 1.8; color: #e5e7eb; }
        .section-content p { margin-bottom: 16px; }
        .section-content strong { color: #fff; font-weight: 600; }

        .feature-list { list-style: none; margin-top: 16px; }
        .feature-list li {
            display: flex; align-items: flex-start; margin-bottom: 12px; padding: 14px;
            background: rgba(70, 87, 237, 0.1); border-radius: 10px;
            border-left: 4px solid #4657ed;
        }
        .feature-list li::before {
            content: '\2713'; color: #06b6d4; font-weight: 700; margin-right: 12px;
        }

        .process-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 16px; margin-top: 12px;
        }
        .process-step {
            background: rgba(70, 87, 237, 0.1); padding: 24px; border-radius: 15px;
            border: 1px solid rgba(70, 87, 237, 0.3);
        }
        .step-number {
            display: inline-flex; align-items: center; justify-content: center;
            width: 48px; height: 48px; border-radius: 50%;
            background: linear-gradient(135deg, #4657ed, #06b6d4);
            color: #fff; font-weight: 700; margin-bottom: 12px;
        }
        .step-title { font-size: 1.1rem; font-weight: 600; color: #fff; margin-bottom: 8px; }
        .step-description { color: #dbe2f2; line-height: 1.6; }

        .cta-section {
            text-align: center;
            background: linear-gradient(135deg, rgba(70, 87, 237, 0.24), rgba(6, 182, 212, 0.24));
            border: 1px solid rgba(70, 87, 237, 0.45);
            padding: 42px 28px;
        }
        .cta-section h2 { font-size: 2rem; margin-bottom: 10px; }
        .cta-section p { color: #dbe2f2; margin-bottom: 22px; font-size: 1.1rem; }

        @media (max-width: 1024px) {

            #navMenu.active { display: block; }

            .hero-h1 { font-size: 2.2rem; }
            .hero-p { font-size: 1.05rem; }
            .hero-cta { flex-direction: column; gap: 14px; }
            .btn { width: 100%; max-width: 280px; }
            .content-section { padding: 26px 18px; }
            .section-title { font-size: 1.7rem; }
        }
