body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #E9C46A; 
    color: #2A9D8F;} 

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

header h1 {
    margin: 0;
}

nav {
    margin: 10px 0;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

section h2 {
    color: #F4A261; 
}

section ul {
    list-style-type: none;
    padding: 0;
}

section ul li {
    margin: 10px 0;
}

section a {
    color: #2A9D8F; 
    text-decoration: none;
}

section a:hover {
    text-decoration: underline;
}

footer {
    background-color: #E76F51;
    color: white;
    text-align: center;
    padding: 15px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer a {
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    nav a {
        display: block;
        margin: 10px 0;
    }

    section {
        margin: 10px;
        padding: 15px;
    }

    section h2 {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2em;
    }

    section h2 {
        font-size: 1.5em;
    }

    nav a {
        font-size: 1.1em;
    }
}