/* Reset some default styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #06579e;
    padding: 20px;
}

header {
    background-color: #06579e;
    color: white;
    padding: 20px;
    text-align: center;
}

hr {
    border-color: black;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

main {
    margin: 20px 0;
}

.intro {
    text-align: center;
    margin-bottom: 20px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.feature-box {
    background-color: white;
    padding: 20px;
    flex: 1 1 250px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 600px) {
    header h1 {
        font-size: 1.5rem;
    }

    .feature-box {
        flex: 1 1 100%;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }
}

footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #666;
}
