/* ================================================= */
/*          STILURI PENTRU PAGINA DE DONAȚII         */
/* ================================================= */

/* Containerul nou care limitează lățimea */
.donation-layout-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Secțiunea principală */
.donation-section {
    background-color: var(--color-light-grey);
    padding: 80px 20px;
}

/* Partea stângă: Mesajul */
.donation-message {
    flex: 1 1 55%;
}
.donation-message h1 {
    font-size: clamp(2.5em, 5vw, 3.5em);
    font-weight: 800;
    color: var(--color-deep-teal);
    line-height: 1.2;
    margin-bottom: 20px;
}
.donation-message p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
}
.donation-message img {
    width: 100%;
    border-radius: var(--border-radius-soft);
    margin: 10px 0 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Partea dreaptă: Formularul */
.donation-form-wrapper {
    flex: 1 1 45%;
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius-large);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: sticky;
    top: 120px;
}
.donation-form-wrapper h2 {
    font-size: 1.8em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    color: var(--color-deep-teal);
}

/* Elemente de încredere */
.trust-elements {
    text-align: center;
    margin-top: 15px;
    border-top: 1px solid #e9ecef;
    padding-top: 15px;
}
.trust-elements p { font-size: 0.9em; color: var(--text-light); }
.payment-logos { display: flex; justify-content: center; gap: 15px; margin-top: 10px; }
.payment-logos img { height: 20px; opacity: 0.7; }

/* SECȚIUNEA CTA (CALL TO ACTION) */
.cta-section {
    background-color: var(--color-deep-teal);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}
.cta-section h2 {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}
.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px auto;
    font-size: 1.1em;
    opacity: 0.9;
}
.cta-section .btn-primary {
    background-color: var(--color-coral-red);
    font-size: 1.1em;
}

/* Adaptare pentru mobil */
@media (max-width: 992px) {
    .donation-layout-container {
        flex-direction: column;
    }
    .donation-form-wrapper {
        position: static;
        width: 100%;
        margin-top: 30px;
        box-sizing: border-box;
    }
}