body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.top-banner {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.top-banner img {
    max-height: 80px;
    width: auto;
}

.banner-text {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.2;
}

.card-wrapper {
    width: 100%;
    max-width: 800px;
}

@media (max-width: 576px) {
    .banner-text {
        font-size: 1.25rem;
        text-align: center;
    }
}
