/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header Section */
header {
    background-color: #2c3e50;
    padding: 20px;
    text-align: center;
}

.logo-img {
    max-width: 100%;
    height: auto;
}

/* Main Content Section */
main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Support Us Section */
.support-us {
    margin-bottom: 40px;
}

.support-us h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.support-us p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.content-img {
    width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 10px;
}

/* Call to Action Section */
.cta-section {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #e74c3c;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #c0392b;
}

/* Bank Details Popup Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    text-align: center;
}

.close {
    color: #aaa;
    float: right;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #333;
}

/* Contact Information Section */
.contact-section {
    margin-top: 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-info {
    background-color: #f4f4f9;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-info p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
}

/* Footer Section */
footer {
    text-align: center;
    padding: 20px;
    background-color: #34495e;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 1.6rem;
    }

    .modal-content {
        margin: 20% auto;
    }
}