* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

body {
    background: #f4f4f4;
    padding: 0px;
    margin: 0px;
}

.site-header {
    background: #000;
    padding: 15px 0;
    text-align: center;
}

.site-header img {
    height: 50px;
}

.form-wrapper {
    max-width: 720px;
    margin: 40px auto;
    background: #eaeaea;
    padding: 35px;
    border-radius: 8px;
}

h2 {
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-size: 26px;
}

label {
    display: block;
    margin-top: 18px;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
}

input,
textarea {
    width: 100%;
    padding: 14px;
    border-radius: 5px;
    border: 1px solid #cfcfcf;
    font-size: 14px;
    background: #fff;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #000;
}

textarea {
    height: 140px;
    resize: none;
}

/* CHECKBOX FIXED */
/* .checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.4;
}

.checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
} */

/* ================= CHECKBOX FIX ================= */
.checkbox-group {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* spacing between two checkboxes */
}

.checkbox {
    display: flex;
    align-items: flex-start;
    /* top align label with checkbox */
    gap: 10px;
    font-size: 13px;
    line-height: 1.4;
}

.checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    /* vertically align with label text */
}

.checkbox label {
    display: inline-block;
    cursor: pointer;
    margin: 0;
    font-size: 13px;
    font-weight: 400;
}

/* RESPONSIVE ADJUSTMENT FOR SMALL SCREENS */
@media (max-width: 480px) {
    .checkbox {
        font-size: 12px;
        gap: 8px;
    }

    .checkbox input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin-top: 3px;
    }
    
    .form-wrapper {
    margin: 40px 20px;
}
}


.submit-btn {
    margin-top: 25px;
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
}

.submit-btn:hover {
    opacity: 0.9;
}

/* SUCCESS MESSAGE */
.success-box {
    display: none;
    margin-top: 25px;
    padding: 15px;
    background: #dff5e3;
    color: #1e7e34;
    border: 1px solid #b7e4c7;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
}

#success:target {
    display: block;
}

/* FOOTER LINKS BELLOW BUTTON */
.footer-links {
    margin-top: 25px;
    font-size: 13px;
    text-align: center;
}

.footer-links a {
    color: #9ad5b0;
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    text-decoration: underline;
}

footer.simple-footer {
    padding: 20px 0px;
    background: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-links {
    padding: 10px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.form-links a {
    color: black;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}

.form-links a:hover {
    color: green
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .form-wrapper {
        padding: 25px;
    }

    h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0px;
    }

    .form-wrapper {
        padding: 20px;
    }

    h2 {
        font-size: 20px;
        text-align: center;
    }

    label {
        font-size: 13px;
    }

    input,
    textarea {
        padding: 12px;
        font-size: 13px;
    }

    textarea {
        height: 120px;
    }

    .submit-btn {
        padding: 14px;
        font-size: 14px;
    }

    /* .checkbox {
        font-size: 12px;
    } */
}