body {
    font-family: 'Arial', sans-serif;
    background-size: cover;
    background-color: #0b223d;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
}

.container {
    text-align: center;
    max-width: 65%;
    margin: 0 auto;
}

.container * {
    width: 100%;
    box-sizing: border-box;
    margin: 10px 0;
}

h1, h2, h3, h4, p {
    color: #048bc9;
}

ul {
    list-style: none;
    padding: 0;
}

.feature {
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    max-width: 100%;
    margin: 5 auto;
}

a {
    text-decoration: none;
    color: #fff;
    background-color: #048bc9;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

a:hover {
    background-color: #061e8a;
}

/* style the images in the how educaton-den works section */
.image-container {
    width: 100%; /* Make sure the container takes full width */
    text-align: center; /* Center the image inside the container */
}

.image-container img {
    width: 20%; /* Control the size of the SVG as a percentage */
    max-width: 300px; /* Set a maximum width for larger screens */
    height: auto; /* Maintain aspect ratio */
}

@media (max-width: 768px) {
    .image-container img {
        width: 60%; /* Increase the size slightly for smaller screens */
        max-width: 300px; /* Adjust maximum width for mobile */
    }
}

@media (max-width: 480px) {
    .image-container img {
        width: 60%; /* Further increase the size for very small screens */
        max-width: 300px; /* Ensure it's not too large on mobile */
    }
}

.image-container-large-large {
    width: 100%; /* Make sure the container takes full width */
    text-align: center; /* Center the image inside the container */
}

.image-container-large img {
    width: 80%; /* Control the size of the SVG as a percentage */
    height: 100%; /* Maintain aspect ratio */
}

@media (max-width: 768px) {
    .image-container-large img {
        width: 100%; /* Increase the size slightly for smaller screens */
    }
}

@media (max-width: 480px) {
    .image-container-large img {
        width: 100%; /* Further increase the size for very small screens */
    }
}
