@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}

* {
    box-sizing: border-box;
}


/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 20px;
}

/* Logo */
.logo {
    max-width: 350px;
}

/* Main Content */
.confirmation-section {
    text-align: center;
}

.title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.description {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.description-container{
    width: 450px;
    margin: auto;
}

.directDeposit-image-container img{
    width: 50px;
}
.directDeposit-image-container{
    text-align: center;
}

#bank{
    width: 50%;
    margin: auto;
}

.welcome-banner {
    background: var(--md-sys-color-primary, #ff6b00);
    color: #fff;
    padding: 1.1rem 2rem;
    margin-bottom: 1.2rem;
    border-radius: 8px;
    font-size: 1.18rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    letter-spacing: 0.01em;
}
.welcome-banner strong {
    font-weight: 700;
}
@media (max-width: 600px) {
    .welcome-banner {
        font-size: 1rem;
        padding: 0.7rem 1rem;
    }
}

@media screen and (max-width: 768px) {

    .title {
        font-size: 24px;
    }

    .description {
        font-size: 14px;
    }

    .contact-info-list {
        margin-bottom: 20px;
    }

    .contact-item {
        margin-bottom: 10px;
    }

    .cta-button {
        font-size: 16px;
        height: 50px;
        width: 100%;
    }

    .description-container{
        width: 100%;
    }

    #bank{
        width: 100%;
    }
    
}