
/* Pay Section */
.pay {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
    background: #f8f9fa; /* Light background for contrast */
    border-radius: 8px;
    /* margin: 20px; */
    margin-top: 3.5rem;
}

/* Pay Heading */
.pay h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333; /* Dark text for readability */
}

/* Pay Image */
.pay img {
    width: 100%; /* Ensure image is responsive */
    max-width: 300px; /* Limit maximum width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Pay Content */
.pay-content {
    width: 100%; /* Full width of the container */
    max-width: 600px; /* Limit maximum width */
    margin: 0 auto; /* Center align */
    padding: 20px; /* Padding for spacing */
    background: #ffffff; /* White background for content area */
    border-radius: 8px; /* Rounded corners for aesthetics */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.pay-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #ea4848; /* Slightly lighter text color */
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pay {
        padding: 20px;
    }

    .pay h1 {
        font-size: 24px;
    }

    .pay-content {
        padding: 15px;
    }
}



/* new d */

/* new d end */