/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

/* Header Styles */
header {
    background: #073763;
    color: #fff;
    padding: 20px 0;
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    width: 50px;
    margin-right: 15px;
}

header .logo span {
    font-size: 1.5em;
    font-weight: bold;
}

nav {
    margin-left: auto;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    transition: background 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    background: #055a8c;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #055a8c;
    min-width: 150px;
    top: 40px;
    left: 0;
    z-index: 1000;
}

.dropdown-content li a {
    padding: 10px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Main Content Styles */
main .section {
    padding: 60px 0;
    background: #fff;
    margin-bottom: 20px;
}

main .section:nth-child(even) {
    background: #e9ecef;
}

.section h1,
.section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #073763;
}

.section p {
    text-align: center;
    max-width: 800px;
    margin: 10px auto;
    font-size: 1.1em;
}

.map,
.progression .insect {
    text-align: center;
    margin: 20px 0;
}

.map img,
.progression .insect img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
}

.progression {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.progression .insect {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    width: 30%;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.progression .insect h3 {
    margin: 10px 0;
    color: #055a8c;
}

.progression .insect p {
    font-size: 1em;
}

/* Footer Styles */
footer {
    background: #073763;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: underline;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffeb3b;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        background: #073763;
        position: absolute;
        top: 70px;
        right: 0;
        width: 200px;
        display: none;
    }

    nav ul li {
        text-align: right;
    }

    nav ul li a {
        padding: 15px;
    }

    nav ul.dropdown-content {
        position: static;
    }

    nav ul.show {
        display: flex;
    }

    .progression {
        flex-direction: column;
        align-items: center;
    }

    .progression .insect {
        width: 80%;
    }
}

/* Button Styles (Optional) */
.button {
    display: inline-block;
    padding: 10px 20px;
    background: #055a8c;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
}

.button:hover {
    background: #03416d;
}
