/* MAIN SECTION */
.support-section {
    padding: 70px 20px;
    background: #f8fdf8;
    display: flex;
    justify-content: center;
}

.support-container {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* LEFT FORM */
.support-form, 
.support-bank {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.support-form h2,
.support-bank h2 {
    font-size: 30px;
    font-weight: 700;
    color: #2d7a35;
    margin-bottom: 10px;
}

.support-form p {
    color: #555;
    margin-bottom: 20px;
}

/* INPUT STYLING */
.input-group {
    margin-bottom: 18px;
}

.input-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #2d7a35;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #c9e7c9;
    border-radius: 10px;
    font-size: 15px;
    transition: .2s;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #2d7a35;
    outline: none;
}

textarea {
    height: 120px;
    resize: none;
}

/* SUBMIT BUTTON */
.btn-submit {
    width: 100%;
    background: #2d7a35;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

.btn-submit:hover {
    background: #25672c;
}

/* BANK DETAILS BOX */
.bank-box {
    background: #f1fbf1;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 5px solid #2d7a35;
}

.bank-box p {
    margin-bottom: 8px;
    color: #444;
}

/* DONATE BUTTON */
.donate-btn {
    width: 100%;
    background: #ff7b00;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: .25s;
}

.donate-btn:hover {
    background: #e86d00;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .support-container {
        grid-template-columns: 1fr;
    }
}
