<style>
    
body {
    font-family: Arial;
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: white;
    margin: 0;
    padding: 0;
}

.container {
    padding: 40px;
    text-align: center;
}

.card {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 15px;
    margin: 15px auto;
    width: 320px;
}

input, button {
    padding: 12px;
    width: 90%;
    margin: 8px 0;
    border-radius: 10px;
    border: none;
}

button {
    background: #00ff9c;
    font-weight: bold;
    cursor: pointer;
}

a {
    color: #00ff9c;
    text-decoration: none;
}
.progress {
    background: #333;
    border-radius: 10px;
    overflow: hidden;
}
.progress div {
    background: #00ff9c;
    height: 20px;
}

.menu a { margin-right:15px; text-decoration:none; font-weight:bold; }
.modal { position:fixed; top:20%; left:50%; transform:translateX(-50%); background:#fff; padding:20px; border-radius:10px; box-shadow:0 5px 15px rgba(0,0,0,0.3); z-index:9999; }
.modal-content { text-align:center; }

/* ===== MOBILE RESPONSIVE FIX ===== */
@media (max-width: 768px) {

    body {
        font-size: 15px;
    }

    .container {
        width: 95%;
        padding: 10px;
    }

    nav.menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        text-align: center;
    }

    nav.menu a,
    nav.menu span {
        display: block;
        margin: 5px;
    }

    .card {
        width: 100% !important;
        margin: 10px 0;
    }

    input,
    textarea,
    button {
        width: 100%;
        box-sizing: border-box;
    }

    .hero {
        padding: 60px 15px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    footer {
        text-align: center;
        font-size: 0.85em;
    }
}

.progress-bar {
    width: 100%;
}
button {
    min-height: 44px; /* mobile tap-friendly */
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 8px;
    border: none;
    outline: none;
    box-sizing: border-box;
}

.back-arrow {
    font-size: 20px;
    text-decoration: none;
    color: #000;
     
    padding: 10px 20px;     /* space around arrow */
    display: inline-block;  
    float: left;            /* align to left */
}

</style>
