.footer {
    background-color: var(--black-level-1);
    color: var(--light-gray);
    padding: 3rem 1.5rem;
    text-align: left;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p {
    width: 300px;
    font-size: 1rem;
    line-height: 1.5;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-section ul li a:hover {
    color: var(--amber-level-2);
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: left;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    color: var(--gray);
    font-size: 1.5rem;
    transition: color 0.3s ease-in-out;
}

.social-icons a:hover {
    color: var(--amber-level-2);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--dim-gray);
    border-top: 1px solid var(--dark-border-level-1);
    padding-top: 1rem;
    text-align: center;
}