* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html,
body {
    height: 100%;
    background-color: #fff;
    color: #333;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navigation */
nav {
    background-color: #173B6C;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    flex-wrap: wrap;
}

.logo img {
    height: 35px;
}

.menu {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: flex-end;
    flex: 1;
}

.menu::-webkit-scrollbar {
    display: none;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    white-space: nowrap;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px 40px;
    flex: 1;
    color: black;
}

.hero h1 {
    font-size: 2.8em;
    color: #f4b400;
    margin-bottom: 10px;
}

.subtext {
    margin-top: 15px;
    font-size: 1em;
    color: black;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Call to Action Button */
.cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 24px;
    font-size: 1em;
    color: white;
    background-color: orange;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s ease;
}

.cta-button:hover {
    transform: scale(0.96);
}

/* Footer */
footer {
    background-color: #f2f2f2;
    text-align: center;
    padding: 20px 10px;
    font-size: 0.9em;
    color: #555;
    margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .menu {
        flex-wrap: nowrap;
        overflow-x: auto;
        width: 100%;
        padding: 5px 0;
    }

    .menu a {
        flex: 0 0 auto;
    }

    .hero {
        padding-top: 60px;
    }
}