/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f8ff;
    color: #333;
    line-height: 1.6;
}
.content-menu{
    padding: 125px;
}
/* Header Section */
header {
    text-align: center;
    padding: 40px;
    background-color: #0077b6;
    color: white;
}
h1{
    font-size: 3rem;
    margin-bottom: 1rem;
}
header img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 10px;
}

/* Sections */
section {
    padding: 40px;
    max-width: 800px;
    margin: 20px auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #005f73;
}

h3 {
    color: #0077b6;
}

/* Paragraphs and Lists */
p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Responsive Images */
.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
}