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

.welcome {
    width: 100%;
    display: flex;
    background-color: white;
    border-radius: 8px;
}

.welcome-section {
    text-align: center;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.welcome-section div {
    margin: 5px;
}

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

.welcome-section p {
    font-size: 18px;
    color: black;
    margin-top: 20px;
    margin-bottom: 20px;
}

.contact-us, .pay-us {
    flex: 1 30%; 
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    gap: 30px;
    margin: 10px; /* Add margin to ensure spacing between buttons */
}

.contact-us-container, .pay-us-container {
    display: flex;
    align-items: center; /* Vertically center the icon and heading */
    justify-content: center; /* Horizontally center the icon and heading */
    gap: 10px; /* Adjust the gap between the icon and the heading as needed */
    text-decoration: none; /* Remove underline from the link */
    color: inherit; /* Inherit the text color */
    width: 100%; /* Ensure the anchor tag takes full width */
    height: 100%; /* Ensure the anchor tag takes full height */
}

.contact-icon ion-icon, .pay-icon ion-icon {
    font-size: 2rem; /* Adjust the size of the icon as needed */
    color: rgb(39, 59, 97);
}

.contact-us-container span, .pay-us-container span {
    font-size: 1.5rem; /* Adjust the size of the text as needed */
    color: rgb(0, 0, 0);
}

.button {
    background-color: rgb(227, 233, 240);
    border-radius: 4px;
    border: none;
    text-align: center;
    font-size: 18px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 30px auto; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px; /* Add padding for better spacing */
}

.button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.button:hover span {
    padding-right: 25px;
}

.button:hover span:after {
    opacity: 1;
    right: 0;
}

@media (max-width: 1200px) {
    .contact, .info {
        flex: 1 1 100%; 
    }

    .pay-us-container {
        align-items: center;
        justify-content: center; 
    }
}

@media (max-width: 768px) {
    .welcome-section div {
        margin: 20px;
    }

    .welcome-section h1 {
        font-size: 2em;
    }

    .welcome-section p {
        font-size: 16px;
    }

    .contact-us, .pay-us {
        flex: 1 1 100%; 
        margin: 10px 0; 
    }

    .button {
        width: 100%; /* Ensure buttons take full width on smaller screens */
    }
}