/* ============ Base Reset ============ */
        * {
            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 ============ */
        .hero {
            text-align: center;
            color: #ffffff;
            padding: 120px 20px 80px;
        }

        .hero-text {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            margin-bottom: 60px;
        }

        .hero-h1 {
            font-size: 3.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #4657ed, #06b6d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-p {
            font-size: 1.3rem;
            font-weight: 400;
            color: #e5e7eb;line-height: 1.6;
        }

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

        /* ============ Buttons ============ */
        .btn {
            display: inline-block;
            padding: 15px 30px;
            background: linear-gradient(135deg, #4657ed, #06b6d4);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(70, 87, 237, 0.3);
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(70, 87, 237, 0.4);
        }

        .btn.secondary {
            background: transparent;
            border: 2px solid #4657ed;
            color: #4657ed;
        }

        .btn.secondary:hover {
            background: #4657ed;
            color: #fff;
        }

        /* ============ Layout Backgrounds ============ */
        main {
            min-height: 100vh;
            background-color: rgba(0, 0, 0, 0.8);
            text-align: left;
            padding-top: 96px;
            padding-bottom: 50px;

        }

        /* ============ Content Sections ============ */
        .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: 40px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(70, 87, 237, 0.2);
            padding: 40px;
        }

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

        .section-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #e5e7eb;
            margin-bottom: 30px;
        }

        .section-content p {
            margin-bottom: 20px;
        }

        .section-content strong {
            color: #fff;
            font-weight: 600;
        }

        /* ============ Feature Lists ============ */
        .feature-list {
            list-style: none;
            margin: 20px 0;
        }

        .feature-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            padding: 15px;
            background: rgba(70, 87, 237, 0.1);
            border-radius: 10px;
            border-left: 4px solid #4657ed;
            transition: transform 0.3s ease;
        }

        .feature-list li:hover {
            transform: translateX(5px);
        }

        .feature-list li::before {
            content: '✓';
            color: #06b6d4;
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 15px;
            flex-shrink: 0;
        }

        /* ============ Process Steps ============ */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .process-step {
            background: rgba(70, 87, 237, 0.1);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(70, 87, 237, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }

        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(70, 87, 237, 0.2);
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #4657ed, #06b6d4);
            border-radius: 50%;
            color: #fff;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .step-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 15px;
        }

        .step-description {
            color: #e5e7eb;
            line-height: 1.6;
        }

        /* ============ Highlight Boxes ============ */
        .highlight-box {
            background: linear-gradient(135deg, rgba(70, 87, 237, 0.2), rgba(6, 182, 212, 0.2));
            border: 1px solid rgba(70, 87, 237, 0.4);
            border-radius: 15px;
            padding: 30px;
            margin: 30px 0;
            text-align: center;
        }

        .highlight-box h3 {
            font-size: 1.5rem;
            color: #fff;
            margin-bottom: 15px;
        }

        .highlight-box p {
            color: #e5e7eb;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* ============ CTA Section ============ */
        .cta-section {
            background: linear-gradient(135deg, rgba(70, 87, 237, 0.3), rgba(6, 182, 212, 0.3));
            border: 1px solid rgba(70, 87, 237, 0.5);
            text-align: center;
            padding: 50px 40px;
        }

        .cta-section h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #e5e7eb;
        }

        /* ======== Mobile / Tablet Styles (<= 1024px) ======== */
        @media (max-width: 1024px) {

            #navMenu.active {
                display: block;
            }

            .hero-h1 {
                font-size: 2.5rem;
            }

            .hero-p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .content-section {
                padding: 30px 20px;
                margin: 20px 10px;
            }

            .process-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .hero-cta {
                flex-direction: column;
                gap: 15px;
            }

            .btn {
                width: 100%;
                max-width: 280px;
            }

            .feature-list li {
                padding: 12px;
            }
        }

        /* ============ Footer ============ */
        footer {
            box-shadow: rgb(70, 87, 237) 0 0 100px 0;
            background-color: rgb(2, 10, 34);
        }

        .footer-box-content {
            display: flex;
            justify-content: space-around;
            align-items: flex-start;
            margin: 0 150px;
            gap: 40px;
        }

        .footer-menu {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-menu a {
            display: block;
            color: #f5f5f5;
            font-size: 15px;
            margin: 8px 0;
            text-decoration: none;
        }

        .footer-box img {
            width: 200px;
            height: auto;
            margin: 50px 0 30px -6px;
        }

        .contact-us {
            margin-top: 50px;
            text-align: left;
        }

        .contact-us h4 {
            font-size: 40px;
            margin-bottom: 30px;
            color: #f5f5f5;
        }

        .copyright {
            margin-top: 30px;
            display: flex;
            justify-content: space-around;
            padding-bottom: 20px;
        }

        .copyright h5 {
            margin-bottom: 10px;
            color: #f5f5f5;
            font-weight: 300;
        }

        @media (max-width: 1024px) {
            footer {
                display: block;
                text-align: center;
            }

            .footer-box-content {
                flex-direction: column;
                margin: 0 20px;
                align-items: center;
            }

            .footer-box {
                display: none;
            }

            .contact-us {
                text-align: center;
                margin: 5% 0;
            }

            .contact-us h4 {
                font-size: 32px;
            }

            .copyright h5 {
                display: none;
            }
        }

        /* ============ Reduced Motion ============ */
        @media (prefers-reduced-motion: reduce) {

            .process-step,
            .feature-list li,
            .btn {
                transition: none !important;
                animation: none !important;
                transform: none !important;
            }
        }
