main {
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment {
    width: 100%;
    text-align: center;
    background-color: white;
    border-radius: 8px;
}

.payment-section {
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 30px;
}

.payment-section h1 {
    font-size: 2.5em;
    color: rgb(55, 89, 151);
    margin-bottom: 20px;
}

.payment-section p {
    font-size: 18px;
    color: black;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 30px;
}

.payment-section a {
    text-decoration: none;
    color: black;
}

.payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    line-height: 30px;
    padding-bottom: 30px;
}

.payment-options > div {
    flex: 1;
    margin-bottom: 30px;
    text-align: left; /* Align text to the left */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: white; /* Apply white background to individual divs */
    border-radius: 8px;
    padding: 20px;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.payment-options h3 {
    font-size: 1.5em;
    color: rgb(55, 89, 151);
    margin-bottom: 10px;
    text-align: center; /* Center align headings */
}

.payment-options p {
    font-size: 16px;
    color: black;
    margin-top: 10px;
    margin-bottom: 10px;
}

.payment-options .cheque {
    text-align: center;
}

@media (max-width: 1170px) {
    .payment-options > div {
        flex: 1 1 100%; /* Make each div take full width */
    }
}