/* Base */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f7f7f7;
    padding: 0;
    color: #333;
    text-align: center;
}

/* Header banner */
.header-banner {
    background: #eeeeee;
    padding: 40px 0 50px 0;
    border-bottom: 1px solid #d8d8d8;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Logo area */
.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 20px;
}

.logo-wrapper img {
    height: 180px;
    object-fit: contain;
    transition: transform 0.25s ease;
}

/* Main title */
.header-banner h1 {
    font-size: 38px;
    font-weight: 300;
    margin: 0;
    color: #444;
    letter-spacing: 0.5px;
}

/* NAVIGATION */
.info-nav {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

.info-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 0;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Button style */
.info-nav li {
    background: #079cff;
    border-right: 1px solid #00000022;
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.info-nav li:last-child {
    border-right: none;
}

/* ACTIVE button styling (first item) */
.info-nav li:first-child {
    background: #079cff;
}

/* Hover */
.info-nav li:hover {
    background: #037dcf;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.12);
}

/* Force nav links to be white, no underline */
.info-nav li a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: inherit;
}

.info-nav li a:hover {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* CONTENT AREA */
.info-container {
    max-width: 900px;
    background: #ffffff;
    margin: 60px auto;
    padding: 40px 40px 60px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

.info-container h2,
.info-container h3 {
    font-weight: 300;
    color: #444;
    text-align: center;
    letter-spacing: 0.4px;
}

.info-container h2 {
    font-size: 34px;
    margin-bottom: 25px;
}

.info-container h3 {
    font-size: 24px;
    margin-top: 45px;
    margin-bottom: 10px;
}

.info-container p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 18px;
    color: #555;
}

/* ===========================
   RESPONSIVE STACKING FIX
   =========================== */

@media (max-width: 768px) {

    /* LOGOS — force stacking */
    .logo-wrapper {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 0 10px !important;
    }

    .logo-wrapper img {
        height: 130px !important;
        max-width: 100% !important;
    }

    /* NAVIGATION — force vertical stacking */
    .info-nav {
        width: 100% !important;
        padding: 0 10px !important;
    }

    .info-nav ul {
        flex-direction: column !important;
        width: 100% !important;
        border-radius: 8px !important;
        overflow: hidden !important;
    }

    .info-nav li {
        width: 100% !important;
        text-align: center !important;
        border-right: none !important;
        border-bottom: 1px solid #00000022 !important;
        padding: 14px 20px !important;
        font-size: 16px !important;
    }

    .info-nav li:last-child {
        border-bottom: none !important;
    }

    /* Content responsiveness */
    .info-container {
        margin: 30px 16px !important;
        padding: 30px 20px 50px 20px !important;
    }

    .header-banner h1 {
        font-size: 30px !important;
    }
}

/* Extra-small screens */
@media (max-width: 420px) {
    .logo-wrapper img {
        height: 110px !important;
    }

    .header-banner h1 {
        font-size: 26px !important;
    }

    .info-container h2 {
        font-size: 28px !important;
    }
}


section img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 20px auto;
}
