/* The footer styles */
.footer {
    position: relative; 
    width: 100%;
    background-color: #9EBAD2;
    margin-top: 4rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    clear: both;
    z-index: 1;
    font-family: "Jost", sans-serif;

}

/* The footer container styles */
.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* The grid template columns */
    gap: 2rem; /* The gap between the sections */
}
.footer__section h3 {
    color: var(--sl-color-neutral-700); 
    margin-bottom: 1rem;    
    font-size: 1.1rem;
}

.footer__section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight: 200;
}

/* The footer list item styles */
.footer__section ul li {
    margin-bottom: 0.5rem;
}

.footer__section ul li a {
    color: var(--sl-color-neutral-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

/* The footer list item hover styles */
.footer__section ul li a:hover {
    color: var(--sl-color-primary-600);
}
.footer__logo {
    width: 100px;
    height: auto;
    padding-left: 15px;
}