* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 20px 0px;
    flex: 1;
}

.logo {
    width: clamp(100px, 12vw, 140px);
    height: clamp(100px, 12vw, 140px);
    background-color: #00b5dd;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo h1 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: bold;
    font-family: "Avenir Next Demi Bold", serif;
}

.logo p {
    font-size: clamp(13px, 1.5vw, 16px);
    text-align: center;
    margin-top: -3px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    line-height: 20.8px;
}

.main-title {
    text-align: center;
    font-size: clamp(42px, 8vw, 90px);
    color: #8a8a89;
    margin-bottom: clamp(30px, 4vw, 47px);
    margin-top: 13px;
    font-weight: normal;
    line-height: 1.2;
    font-family: "Avenir Next Demi Bold", serif;
}

.sections {
    display: flex;
    gap: clamp(20px, 3vw, 40px);
    margin-bottom: 50px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.section {
    padding: clamp(22px, 3vw, 40px) clamp(20px, 2.5vw, 30px);
    text-align: center;
    color: white;
    width: clamp(280px, 45vw, 593px);
    height: 307px;
    display: flex;
    flex-direction: column;
}

.section p {
    line-height: 1.3;
    font-family: "Avenir Next", "Nunito Sans", "Lato", sans-serif;
    font-weight: 400;
}

.coop-section h2 {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: clamp(26px, 2vw, 15px);
    font-weight: 400;
}

.bank-section h2 {
    font-family: "helvetica-neue-lt-pro-cond", sans-serif;
    font-style: normal;
    font-size: clamp(22px, 3vw, 42px);
    margin-bottom: clamp(32px, 2vw, 10px);
    font-weight: 400;
}

.coop-section {
    background-color: #00b5dd;
    margin-bottom: clamp(20px, 3vw, 20px);
    font-size: clamp(19px, 1.8vw, 19px);
}

.bank-section {
    background-color: #06357A;
    margin-bottom: clamp(20px, 3vw, 18px);
    font-size: clamp(19px, 1.8vw, 19px);
}

.bank-section p {
    margin-bottom: clamp(34px, 3vw, 18px);
}

.enter-btn {
    border: 2px solid white;
    background: transparent;
    color: white;
    padding: clamp(10px, 1.5vw, 13px) clamp(40px, 6vw, 70px);
    font-size: clamp(14px, 1.5vw, 16px);
    font-family: "Avenir Next Demi Bold", serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    margin: auto;
}

.coop-section .enter-btn:hover {
    background-color: white;
    color: #4db8d4;
}

.bank-section .enter-btn:hover {
    background-color: white;
    color: #1e3a8a;
}

.footer {
    padding: 20px 0px 0px 0px;
    align-items: center;
    justify-content: center;
}

.footer-text1 {
    color: #b3b3b3;
    text-align: left;
    font-family: "Avenir Next Demi Bold", serif;
    font-size: 16px;
}

.footer-text2 {
    color: #b3b3b3;
    font-size: 12px;
    text-align: left;
    font-family: "Avenir Next Demi Bold", serif;
}

/* Enhanced tablet and mobile responsive design */
@media (max-width: 768px) {
    .sections {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .section {
        width: clamp(300px, 90vw, 400px);
        height: auto;
        min-height: 200px;
        padding: 30px 50px;
        justify-content: space-between;
    }

    .footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-text2 {
        margin-bottom: 50px;
    }
}

/* Added very small screen optimizations */
@media (max-width: 480px) {
    .container {
        padding: 20px 15px 0px;
    }

    .section {
        width: clamp(280px, 95vw, 350px);
        padding: 20px 15px;
    }

    .section p br {
        display: none;
    }
}