/* ============ 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;
            background-color: rgb(2, 10, 34);
            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 2px 80px;
        }

        .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;
        }

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

        .hero-h1 {
            position: static;
            transform: translateX(-100%);
            transition: transform 1s ease-out, opacity 1s ease-out;
            opacity: 0;
        }

        .hero-p {
            position: static;
            color: #ffffff;
            margin: 0;
            text-align: center;
            transform: translateX(100%);
            transition: transform 1s ease-out, opacity 1s ease-out;
            opacity: 0;
            font-size: 1.3rem;
            font-weight: 400;
            line-height: 1.6;
        }

        .animate-h1 {
            transform: translateX(0);
            opacity: 1;
        }

        .animate-p {
            transform: translateX(0);
            opacity: 1;
        }

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

        /* ============ Layout Backgrounds ============ */

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

        }

        /* ======== 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;
            }

            .about-section {
                padding: 40px 20px;
                margin: 20px;
            }

            .values-grid,
            .team-grid {
                grid-template-columns: 1fr;
            }

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

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

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

            .value-card,
            .team-member,
            .btn {
                transition: none !important;
                animation: none !important;
                transform: none !important;
            }
        }

/* Inline style replacements */
.inline-style-1 { font-size: 2.5rem; color: #4657ed; }
.inline-style-2 { text-align: center; }
.inline-style-3 { font-size: 1.2rem; margin-bottom: 40px; }
.inline-style-4 { margin-bottom: 40px; }
