body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

/* HEADER */
.header {
    background: #0B2545;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 15px;
}

/* HERO */
.hero {
    background: url("../images/background.jpg") center/cover no-repeat;
    height: 260px;
}

/* FORM SECTION */
.form-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0 40px 40px;
    margin-top: -110px;
    flex-wrap: wrap;
}

/* MAIN FORM */
.form-container {
    background: white;
    padding: 28px;
    width: 55%;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    min-width: 300px;
}

.form-container h2 {
    margin-top: 0;
}

form input,
form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
}

form textarea {
    height: 110px;
}

.upload-box {
    display: block;
    margin-top: 12px;
    padding: 12px;
    border: 1px dashed #0B2545;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

input[type="file"] {
    margin-top: 8px;
}

.submit-btn {
    width: 100%;
    margin-top: 18px;
    padding: 14px;
    background: #0B2545;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* STATUS BOX */
.status-box {
    background: white;
    padding: 25px 30px;
    width: 25%;
    min-width: 260px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.status-box input {
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.status-btn {
    width: 100%;
    margin-top: 18px;
    padding: 14px;
    background: #0B2545;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* FOOTER */
.footer {
    background: #0B2545;
    color: white;
    padding: 30px 40px;
    margin-top: 40px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.social {
    margin-top: 20px;
    font-size: 20px;
}

/* LOADER + SUCCESSBOX */
#loader {
    display: none;
    width: 45px;
    height: 45px;
    border: 5px solid #ccc;
    border-top: 5px solid #1d75de;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#successBox {
    display: none;
    text-align: center;
    padding: 14px;
    font-size: 18px;
    color: green;
}

/* ========================= */
/* RESPONSIVE BREAKPOINTS */
/* ========================= */

@media (max-width: 900px) {

    .hero {
        height: 200px;
    }

    .form-section {
        margin-top: -80px;
        padding: 0 20px 40px;
    }

    .form-container {
        width: 100%;
    }

    .status-box {
        width: 100%;
    }

    .nav-links {
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 600px) {

    .header {
        justify-content: center;
        text-align: center;
    }

    .form-container,
    .status-box {
        padding: 20px;
    }

    form input,
    form textarea {
        font-size: 14px;
        padding: 10px;
    }

    .submit-btn,
    .status-btn {
        padding: 12px;
    }

    footer {
        text-align: center;
    }
}
