﻿body {
    background: #f4f6fa;
    font-size: 1.15em;
}

.content-container {
    background-color: #fff;
    padding: 40px 30px 30px 30px;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    margin-top: 60px;
    margin-bottom: 40px;
    font-size: 1.18em;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #007bff;
}

.charity-logos .row {
    display: flex;
    align-items: stretch;
    gap: 12px; /* Decreased gap between charities */
}

.charity-logos .col-md-4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: stretch;
    padding: 0 4px;
}

.charity-card {
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 32px 20px 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    transition: box-shadow 0.2s;
}

.charity-card:hover {
    box-shadow: 0 6px 24px rgba(0,123,255,0.10);
}

.logos {
    max-width: 120px;
    max-height: 120px;
    width: auto;
    margin-bottom: 18px;
}

.charity-card h3 {
    font-size: 1.18rem;
    font-weight: 600;
    margin: 12px 0 8px 0;
}

.charity-card p {
    font-size: 1.3rem;
    color: #444;
    margin-bottom: 18px;
}

.charity-card .btn {
    min-width: 120px;
    font-weight: 500;
    border-radius: 24px;
    padding: 8px 24px;
    font-size: 1.5rem;
    transition: background 0.2s;
}

.charity-card .btn-primary:hover {
    background: #0056b3;
}

.divider {
    border-top: 1px solid #e0e0e0;
    margin: 40px 0 32px 0;
}

.how-it-works .row {
    display: flex;
    align-items: stretch;
    gap: 24px;
}

.how-it-works .col-md-4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 28px 12px 20px 12px;
    margin-bottom: 0;
}

.how-it-works img {
    max-width: 70px;
    margin-bottom: 14px;
}

.how-it-works h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.how-it-works p {
    font-size: 1.5rem;
    color: #444;
}

.charity-signup {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.charity-signup-form {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 32px 24px 24px 24px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.charity-signup-form .form-group {
    margin-bottom: 18px;
}

.charity-signup-form label {
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 1.4rem;
}

.charity-signup-form .form-control {
    border-radius: 8px;
    font-size: 1.4rem;
    padding: 10px 12px;
}

.charity-signup-form .btn-primary {
    border-radius: 24px;
    font-weight: 600;
    font-size: 1.3rem;
    padding: 10px 32px;
    margin-top: 10px;
}

.g-recaptcha {
    margin: 18px 0 0 0;
    display: flex;
    justify-content: center;
}

@media (max-width: 991px) {
    .charity-logos .row, .how-it-works .row {
        flex-direction: column;
        gap: 0;
    }

    .charity-logos .col-md-4, .how-it-works .col-md-4 {
        margin-bottom: 24px;
    }
}
