body {
    background: #f6f8fa;
    font-family: 'Inter', 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    box-sizing: border-box;
}

.header {
    background: #1a2236;
    box-shadow: 0 2px 12px rgba(26,34,54,0.08);
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid #e3e6ee;
    padding: 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
    height: 72px;
}

.small-logo {
    width: 84px;
    height: 84px;
    font-size: 1.2em;
    margin: 0;
    background: transparent;
    color: #1a2236;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: none;
    padding: 0;
    filter: brightness(0) invert(1);
}

.nav-pane {
    display: flex;
    gap: 8px;
}

.nav-pane a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 1.05em;
    padding: 10px 22px;
    border-radius: 6px;
    background: transparent;
    border: none;
    transition: background 0.2s, color 0.2s;
    margin: 0 2px;
}

.nav-pane a:hover {
    background: #2ec4b6;
    color: #fff;
}

main {
    max-width: 700px;
    margin: 40px auto 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(46,196,182,0.07);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h2 {
    font-size: 2em;
    color: #1a2236;
    margin-bottom: 18px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    width: 100%;
}

p, a {
    font-size: 1.08em;
    color: #3a3d42;
    line-height: 1.7;
    margin-bottom: 16px;
    text-align: center;
    width: 100%;
}

a {
    color: #2ec4b6;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #ff3366;
}

.section {
    max-width: 900px;
    margin: 48px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(46,196,182,0.07);
    padding: 40px 32px;
    min-height: 200px;
    text-align: center;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-dark {
    background: #1a2236;
    color: #fff;
}

.section-dark h2 {
    color: #fff;
}

.section-row {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.section-row > div {
    flex: 1 1 300px;
}

.product-row {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.product {
    background: #e3e6ee;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(46,196,182,0.08);
    padding: 16px;
    text-align: center;
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.funds-row {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

.funds-row img {
    height: 40px;
    object-fit: contain;
}

.funds-row span {
    font-size: 1em;
    color: #fff;
    background: #2ec4b6;
    padding: 8px 16px;
    border-radius: 6px;
}

.cta-btn, button, .tab-btn {
    background: #1a2236;
    color: #2ec4b6;
    border: none;
    border-radius: 6px;
    padding: 8px 18px;
    font-size: 1em;
    font-weight: 500;
    margin-bottom: 16px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(26,34,54,0.08);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    outline: none;
    letter-spacing: 0.5px;
    display: inline-block;
}

.cta-btn:hover, button:hover, .tab-btn:hover {
    background: #2ec4b6;
    color: #fff;
    box-shadow: 0 4px 16px rgba(46,196,182,0.10);
    transform: translateY(-1px) scale(1.03);
}

.tab-btn.active {
    background: #2ec4b6;
    color: #fff;
    box-shadow: 0 2px 8px rgba(46,196,182,0.10);
    transform: none;
}

.hero-images {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-images img {
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(46,196,182,0.10);
    width: 400px;
    height: 200px;
    object-fit: cover;
}

p, h1, h2, h3, h4, h5, h6, li, td, th {
    text-align: justify !important;
}

@media (max-width: 700px) {
    body {
        font-size: 1em;
    }
    .header-content {
        flex-direction: column;
        height: auto;
        padding: 0 12px;
        gap: 12px;
    }
    .small-logo {
        width: 56px;
        height: 56px;
        margin-bottom: 8px;
    }
    .nav-pane {
        flex-wrap: wrap;
        gap: 4px;
        justify-content: center;
    }
    main, .section {
        max-width: 100%;
        padding: 18px 6px;
        border-radius: 10px;
        box-shadow: none;
    }
    h1, h2 {
        font-size: 1.3em !important;
        margin-bottom: 12px !important;
    }
    p, a, th, td {
        font-size: 1em !important;
    }
    .hero-images img, #photo-roulette-1 img, #photo-roulette-2 img {
        width: 98vw !important;
        max-width: 98vw !important;
        height: auto !important;
        margin: 0 0 12px 0 !important;
    }
    table {
        font-size: 0.95em;
        max-width: 100vw;
        overflow-x: auto;
        display: block;
    }
    th, td {
        padding: 8px 4px !important;
    }
    .tab-btn, .cta-btn, button {
        padding: 8px 12px !important;
        font-size: 0.95em !important;
        margin-bottom: 8px !important;
    }
    iframe {
        width: 98vw !important;
        height: 180px !important;
    }
}






