/* Styles for the image container */
.image-container img {
    max-width: 100%;
    height: auto;
}
.cta-section {
    padding: 40px;
    margin-bottom: 25px;
}

.cta-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.cta-image {
    flex: 1;
    padding-right: 20px;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.cta-content {
    flex: 2;
    padding-left: 20px;
    position: relative;
}

.line {
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 2px;
    background: #007bff;
    transform: translateY(-50%);
}

.card-donor {
    background: transparent;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-blend-mode: overlay;
    color: #333; 
    border-radius: 15px;

}

.card-donor h2, .card-donor h3 {
    font-size: 25px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #287CC5;
}

.card-donor p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-donor ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    text-align: left;
    font-size: 18px;
}

.card-donor li {
    margin-bottom: 10px;
}

/* Basic styling for the form container */
.donation-name{
    font-size: 1.8rem;
    color:#287CC5;
    font-weight: bold;
}
.donation {
    display: flex;
    justify-content: center;  /* Centers horizontally */
    align-items: center;  /* Centers vertically */
    padding: 40px;
}

.container-donor {
    max-width: 800px;
    width: 100%;
    padding: 30px;
    background: white;
    box-shadow: 3px 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    border: 1px solid #287CC5;
}


/* Basic styling for form groups */
.form-group {
    margin-bottom: 15px;
}

/* Basic styling for form labels */
.form-group label {
    display: block;
    margin-bottom: 5px;
    color: rgb(61, 60, 60);
}

/* Basic styling for form fields */
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #287CC5;
    border-radius: 4px;
    font-size: 16px;
}

.form-row {
    display: flex;
    gap: 20px; 
}

/* Ensure that fields inside form-row take up equal space */
.form-row .form-group {
    flex: 1;
}

/* Basic styling for submit button */
.btn-submit {
    font-size: 18px;
    color: #fff;
    border: none;
    border-radius: 10px;
    background: #287CC5;
    padding: 10px 20px;
    cursor: pointer;
}

.btn-submit:hover {
    background:#1b5b92;
}

.error {
    color: red;
    font-size: 14px;
}
.donationrecaptcha-error-message{
    display: none;
   color: red;
   font: 14px; 
}
.areas {
    padding: 20px;
    margin: 10px;
    /* border: 1px solid #287CC5; */
    font-size: 18px;
    text-align: center;
    color: #287CC5;
}

.areas p {
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .donation {
        padding: 20px !important;
    }

}