/* General styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body, html {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(rgb(226, 231, 233), rgb(236, 228, 240));
    color: rgb(24, 24, 24);
}

header {
    background-color: #0c343d;
    color: #fff;
    padding: 10px 0;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px;
    border-radius: 100%;
    border: 1px solid white;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

main {
    flex: 1;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.download-button {
     display: inline-flex; 
     align-items: center; 
     justify-content: center; 
     background-color: #4a8893; 
     color: white; 
     padding: 10px 20px; 
     text-decoration: none; 
     border-radius: 6px; 
     position: relative; 
     top: 20px;
     } 
     .download-button:hover { 
        background-color: #45a049; 
    }

footer {
    background-color: #0c343d;
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 18px;
    }

    nav ul {
        position: absolute;
        top: 60px;
        right: 0;
        background: #0c343d;
        flex-direction: column;
        width: 200px;
        display: none;
        padding: 15px;
    }

    nav ul.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}
