/* ======================= */
/* CONTACT SECTION         */
/* ======================= */
.contact-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    padding: 10px;
    /* Keep other styles, remove center text for form content */
}

.contact-section h2 {
    color: white;
    font-size: 42px;
    font-weight: 700;
}

/* Contact info and form boxes */
.contact-info-box,
.contact-form-box {
    background: var(--brand-yellow);
    color: var(--brand-green);
    padding: 10px 15px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(255, 224, 130, 0.25);
    max-width: 600px;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 0px;

    /* LEFT ALIGN content inside boxes */
    text-align: left;
}

/* Form labels and fields */
.contact-form label {
    display: block;
    margin-bottom: 4px;
    font-weight: bold;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 6px;
    margin-bottom: 4px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    color: var(--brand-green);
    text-align: left; /* ensures typed text is left-aligned */
}

/* Submit button */
.contact-form button {
    padding: 12px 25px;
    background: #4493d5;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;

    /* Align button with the left side of form fields */
    align-self: flex-start;
}

.contact-form button:hover {
    background: #14522a;
    transform: translateY(-2px);
}


.contact-form button:hover {
    background: #14522a;
    transform: translateY(-2px);
}


