* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #fff;
}

header {
background-color: #0062c4;
    color: #fff;
    padding: 20px 0 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 24px;
}

nav ul {
    list-style: none;
    padding: 10px 0 0;
    height: auto;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
}

nav ul li {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-direction: column;
}

nav ul li a {
color: #fff;
    text-decoration: none;
    font-weight: bold;
    background: #ff6e00;
    border-radius: 10px 10px 0 0;
    padding: 10px;
}

section {
padding: 0 2em 2em;
    text-align: center;
    background-color: #fff;
    margin: 0 auto;
    display: block;
    box-sizing: border-box;
}

section h2 {
    margin: 15px 0;
    color: #ff6e00;
    font-size: 2em;
    line-height: 1;
    border-left: 5px solid;
    padding-left: 10px;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}
.content p {
        margin: 0 0 10px;
}
.small-image {
    width: 300px;
    height: auto;
    display: block;
    margin: 20px auto;
}

footer {
    background-color: #0362c4;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    width: 100%;
    bottom: 0;
}
a {
    color: white
}
footer p {
    margin: 5px 0;
}
.large_picture {
    
}
.content ul {
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin-bottom: 1em;
}
.content li {
    list-style: none;
    background: #ff6e00;
    color: white;
    max-width: max-content;
    padding: 0 10px;
}
img {
    width: auto;
    box-sizing: border-box;
    display: block;
    max-width: 100%;
}
@media (max-width: 768px) {
    nav ul li {
        display: block;
        margin: 10px 0;
    }

    .content {
        padding: 0 15px;
    }

    .small-image {
        width: 100%;
        height: auto;
    }
}
