/*  qe code qr code qr code qr code qr cpode qr code qr code qr code Donation Section Styling  mean */
.onation-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:40px 120px;; /* Added padding on all sides */
/*  margin: 20px;  Margin on all sides */
margin:0 px;
    gap: 50px;
    background: #333;
    /* border-radius: 20px; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    color: #fff;
}

/* Content Styling */
.onation-content {
    flex: 1;
    max-width: 500px;
}

.onation-content h2 {
    font-size: 2.8rem;
    color: #FF6600;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.onation-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.bank-details {
    list-style: none;
    padding: 0;
}

.bank-details li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.bank-details i {
    color: #FF6600;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Button Styling */
.onate-btn {
    background-color: #FF6600;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.onate-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

/* QR Code Styling */
.qr-code {
    flex: 1;
    text-align: center;
}

.qr-code img {
    max-width: 100%;
    height: auto;
    border: 4px solid #FF6600;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .onation-section {
        flex-direction: column;
        padding:15px;
        text-align: center;
        margin:0px 0px;
    }

    .onation-content {
        max-width: 100%;
    }

    .qr-code img {
        margin-top: 20px;
    }
}
