*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/*Donation Pages Section*/
.donation-wall-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 10px;
    background-color: #fff;
    width: 100%;
    margin-top: 70px;
}

.donation-type-section {
    padding: 60px 20px;
    background-color: #fff;
    margin-bottom: 10px;
}


/*Donation Pages Wrapper*/
.donation-wall-wrapper{
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.donation-type-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
}

.donation-wall {
    text-align: justify;
}

.donation-wall p{
     max-width: 1540px;
    text-align: justify;
}



/*Donation Pages Header*/
.donation-wall-header{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
    font-family: 'Georgia', serif;
    text-align:center;
}


.donation-wall-description{
    text-align:justify;
    align-items: center;
    font-size: 14px;
    color: #555;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
    padding: 0 15px;
}


.campaign-section {
    padding: 40px 10px;
    background-color: #7A0000;
    display: flex;
    align-items:center;
    justify-content: center;
}

.campaign-wrapper {
    max-width: 1300px;
    padding: 20px 10px;
    margin: 0 60px 35px;
    overflow: hidden;
}

.campaign-header{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
    font-family: 'Georgia', serif;
    text-align:center;
    color: #fff;

}

.campaign-header h2 span {
  color: #F4B400;
}


.icon {
 display: flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 10px;
}

.icon img {
  height: 250px; /* adjust as needed */
  margin-right: 10px;
}


.donation-mass-intention,  .donation-campaign{
    flex: 1 1 400px;
    max-width: 590px;
    padding: 0 30px; /* top-bottom: 0px, left-right: 20px */
    text-align: center;

}

.donation-wall-header span{
    color: #7A0000;
}

.donation-mass-intention h2,  
.donation-campaign h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    font-family: 'Georgia', serif;
    color: #333;
    text-align:center
}

.donation-mass-intention span,  
.donation-campaign span {
  
    color: #7A0000;
}



.donation-mass-intention p,
.donation-campaign p{
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #444;
    text-align:justify;
}

.donation-mass-intention .btn,
.donation-campaign .btn{
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    color: #fff;
    background: grey;
    text-decoration: none;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.donation-mass-intention .btn:hover,
.donation-campaign .btn:hover{
    background: #7A0000;
    font-weight: 400;
    color: #fff;
    transform: translateY(-3px);

   /* box-shadow: 0 8px 15px rgba(241, 151, 99, 0.3) */
}

@media (max-width: 768px) {

.donation-wall-section {
    padding-top: 0;
}
}

.no-data-message {
    text-align: center;
    padding: 25px 0;
    color: #ffffff;
    border-radius: 4px;
    margin-bottom: 20px; /* Added this from your second message for consistency */
}