body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f6f9fc;
    color: #525f7f;
}

header {
    background-image: #f1f4ef;
    color: #525f7f;
    text-align: center;
    padding: 1em 0;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1);
}

p {
    font-size: 18px; 
    line-height: 1.6; 
}

li {
  font-size:18px;
  line-height: 1.6; 
}

.image-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 16px; /* You can adjust the gap between the images */
}
.image-row img {
  max-width: calc(50% - 16px); /* Adjust the 16px if you change the gap */
  height: auto;
}
header img {
    max-height: 100px; /* Adjust the size of your logo */
    width: auto;
    display: block;
    margin: 0 auto; /* Center the logo */
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #3656d3;
    text-decoration: none;
    font-size: 16px;
}

section {
    max-width: 600px;
    margin: 2em auto; 
    padding: 1em;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 3px rgba(0,0,0,0.1);
}

footer {
    background-color: #fff;
    color: #3656d3;
    text-align: center;
    padding: 1em 0;
    box-shadow: 0 -1px 3px 0 rgba(0,0,0,0.1);
    position: relative;
}
/* Add this CSS to style the image */
#full-width-image {
    width: 100%;    /* Makes the image full width */
    height: auto;   /* Keep the aspect ratio */
    display: block; /* Prevents inline behaviors and allows margin to function */
    margin: 0 auto; /* Centers the image */
}

@media (max-width: 600px) {
    nav ul li {
        margin: 0 10px;
    }
    section {
        margin: 2em 3%;
    }
}
