.charity-section {
    padding: 60px 20px;
    background: #fff;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.charity-section * {
    box-sizing: border-box;
}

.charity-container {
    width: 100%;
    max-width: 1100px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.charity-img-col {
    flex: 1.2;
}

.charity-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.charity-text-col {
    flex: 1;
}

.charity-heading {
    font-family: "Times New Roman", Times, serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-top: 0;
    margin-bottom: 25px;
}

.highlight-pink {
    color: #e27890;
}

.charity-desc {
    font-family: sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .charity-section {
        padding: 20px;
    }

    .charity-container {
        flex-direction: column;
        gap: 30px;
    }

    .charity-heading {
        font-size: 28px;
        text-align: center;
    }

    .charity-desc {
        text-align: center;
    }
}