body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    color: #333;
    background-color: #f4f4f4;
}

a {
    text-decoration: none;
    color: inherit;
}


.navbar {
    background-color: #003f5c;
    color: white;
    padding: 15px;
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffa600;
}


.section {
    padding: 50px 20px;
    background-color: white;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.section:nth-child(even) {
    background-color: #f9f9f9;
}

.section img {
    max-width: 80%;
    margin: 20px 0;
    border-radius: 10px;
}

.section h1 {
    color: #003f5c;
    margin-bottom: 20px;
}

.section p {
    font-size: 1.1em;
    line-height: 1.6;
}


.cta {
    background-color: #ffa600;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

.cta:hover {
    background-color: #ff7600;
}


.faq-item h3 {
    cursor: pointer;
    color: #003f5c;
    margin: 15px 0;
}

.faq-item .answer {
    display: none;
    padding: 10px 0;
    border-top: 1px solid #ddd;
    color: #555;
}


footer {
    background-color: #003f5c;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

h1, h2 {
    color: #023e8a;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.5em;
    margin-top: 20px;
}

.navbar {
    background-color: #023e8a;
    color: white;
    padding: 15px;
    text-align: center;
}

.navbar .logo {
    font-size: 1.8em;
    font-weight: bold;
}

.navbar ul {
    list-style: none;
    padding: 0;
}

.navbar ul li {
    display: inline-block;
    margin: 0 15px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
}

.navbar ul li a:hover {
    color: #ffa600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: white;
}

.section {
    margin-bottom: 40px;
}

.content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.content img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.text-content {
    flex: 1;
    min-width: 300px;
    font-size: 1.2em;
}

.activities-list {
    margin-top: 20px;
}

.activities-list div {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #555;
}

.activities-list div:before {
    content: "✓";
    color: #ffa600;
    margin-right: 10px;
}

footer {
    background-color: #023e8a;
    color: white;
    text-align: center;
    padding: 15px;
}