/* Minimal, elegant site-wide styles */
body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, 'Liberation Sans', sans-serif;
    margin: 0;
    padding: 0;
    background: #fafbfc;
    color: #222;
}

.top-nav {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)), url('../img/top_menu.png') center center/cover no-repeat;
    border-bottom: 1px solid #e5e5e5;
    padding: 0 2rem;
    position: relative;
}
.top-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
    align-items: center;
    height: 60px;
}
.top-nav li {
    display: inline;
}
.top-nav a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.2s;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}
.top-nav a:hover, .top-nav a:focus {
    color: #43EBFF;
    border-bottom: 2px solid #43EBFF;
}
.top-nav a.active {
    background: #43EBFF;
    color: #fff !important;
    border-radius: 6px;
    padding: 8px 14px;
    border-bottom: none;
}

main {
    width: 100%;
    margin: 0;
    padding: 0 1.5rem;
}

main, main *, p {
    white-space: normal !important;
    word-break: break-word;
    overflow-wrap: anywhere;
    max-width: 100vw;
    box-sizing: border-box;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Bottom Banner */
.bottom-banner {
    background: linear-gradient(rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8)), url('../img/top_menu.png') center center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    margin: 3rem -1.5rem 0 -1.5rem;
    position: relative;
}

.banner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.banner-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

footer {
    text-align: center;
    color: #888;
    font-size: 0.95rem;
    padding: 1.5rem 0 1rem 0;
    border-top: 1px solid #e5e5e5;
    background: #fff;
    margin-top: 0;
}

@media (max-width: 600px) {
    .top-nav ul {
        flex-direction: column;
        gap: 0.5rem;
        height: auto;
        padding: 1rem 0;
    }
    main {
        padding: 0 0.5rem;
    }
}