html {
        scroll-behavior: smooth;
        height: 100%;
    }

    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        pointer-events: none;
        background: linear-gradient(45deg, rgba(10, 10, 10, 0.9), rgba(30, 60, 90, 0.2), rgba(115, 194, 251, 0.05));
    }

    :root {
        --accent: #73c2fb;
        --text-light: #e0e0e0;
        --secondary: #1e2326;
    }

    body {
        color: var(--text-light);
        font-family: 'Poppins', sans-serif;
    }

    .main-content {
        padding-top: clamp(80px, 10vh, 150px);
        padding-bottom: clamp(40px, 5vh, 60px);
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero {
        text-align: center;
        width: min(90%, 1200px);
        padding: clamp(30px, 6vh, 60px) 0;
    }

    h1 {
        font-size: clamp(2rem, 6vw, 4rem);
        font-weight: 700;
        color: var(--text-light);
    }

    .hero .tagline {
        font-size: clamp(1.1rem, 2vw, 1.2rem);
        color: var(--text-light);
        opacity: 0.9;
        margin: clamp(10px, 2vw, 20px) 0;
        font-weight: 600;
    }

    /* .glow {
        animation: glowEffect 2s infinite alternate;
    }

    @keyframes glowEffect {
        0% {
            text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.3);
        }

        100% {
            text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.8);
        }
    } */

    .hero p {
        font-size: clamp(1rem, 2.5vw, 1.125rem);
        margin: clamp(8px, 1.5vh, 12px) 0;
    }

    .contact-form {
        width: min(90%, 700px);
        background: rgba(255, 255, 255, 0.05);
        padding: clamp(20px, 5vw, 40px);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        margin: clamp(20px, 5vh, 40px) auto;
    }

    .contact-form h2 {
        font-size: clamp(1.8rem, 4vw, 2.2rem);
        text-align: center;
        color: var(--text-light);
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .contact-form p {
        font-size: clamp(0.9rem, 2vw, 1.125rem);
        color: var(--text-light);
        text-align: center;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        font-size: clamp(0.9rem, 2vw, 1rem);
        color: var(--text-light);
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        font-size: clamp(0.9rem, 2vw, 1rem);
        font-family: 'Poppins', sans-serif;
        background: rgba(255, 255, 255, 0.1);
        color: var(--text-light);
        transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--accent);
        box-shadow: 0 0 5px rgba(115, 194, 251, 0.3);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

    .form-group select option {
        color: #4a4a4a;
    }

    .form-group select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e0e0e0'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 0.75rem center;
        background-size: 1rem;
    }

    .form-group.checkbox {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .form-group.checkbox input {
        width: auto;
        margin-right: 0.5rem;
    }

    .form-group.checkbox label {
        font-weight: 400;
        margin-bottom: 0;
    }

    .form-group .required::after {
        content: '*';
        color: #D4AF37;
        margin-left: 0.25rem;
    }

    .inquiry-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: clamp(12px, 2vw, 16px);
        margin-top: clamp(16px, 3vh, 24px);
    }

    @media screen and (max-width: 768px) {
        .contact-form {
            padding: clamp(15px, 4vw, 30px);
        }

        .contact-form h2 {
            font-size: clamp(1.5rem, 3.5vw, 1.8rem);
        }
    }