/* Footer Section */
.footer-section {
    background-color: var(--dark-gray);
    color: var(--light-gray);
    padding: 40px 20px 20px;
    text-align: center;
    /* Footer should not grow, it stays at the bottom */
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center; /* Changed from 'left' */
    gap: 20px;
    margin-bottom: 20px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.footer-info {
    display: flex;
    align-items: flex-end; /* Changed from center to flex-end to align items to the bottom */
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center; /* Keep centering the group unless you want it left-aligned */
}

/* Add this new rule to target the div containing the text */
.footer-info > div {
    text-align: left; /* Ensure text inside this div is left-aligned */
}

.footer-logo {
    max-height: 150px;
    width: auto;
}

.footer-info p {
    margin-bottom: 0.5rem;
}

.footer-info a,
.footer-social a {
    color: var(--light-gray);
    transition: color 0.3s ease;
}

.footer-info a:hover,
.footer-social a:hover {
    color: var(--brand-orange);
    text-decoration: none;
}

.footer-social a {
    font-size: 1.5rem;
    margin: 0 10px;
}

.footer-bottom {
    /* border-top: 1px solid #555; */ /* Optional: Remove or adjust */
    padding-top: 20px;
    margin-top: 20px;
    background-color: var(--brand-orange);
    color: var(--white);
    padding-bottom: 20px;
    display: flex;         /* Use flexbox */
    flex-wrap: wrap;       /* Allow wrapping */
    justify-content: center; /* Center items horizontally */
    align-items: center;   /* Center items vertically */
    gap: 10px 20px;        /* Vertical and horizontal gap */
    text-align: center;    /* Center text for wrapped items */
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--white);
    margin: 0; /* Remove default paragraph margin */
}

.footer-quick-links {
    /* No specific styles needed here if ul is handled */
}

.footer-quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;      /* Make the list itself a flex container */
    flex-wrap: wrap;    /* Allow links within the list to wrap */
    justify-content: center; /* Center links if they wrap */
    gap: 5px 10px;      /* Space between list items */
}

.footer-quick-links li {
     /* No specific display needed as flex handles it */
}

.footer-quick-links a {
    color: var(--white); /* Make link text white */
    font-size: 0.9rem;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.footer-quick-links a:hover {
    text-decoration: underline;
}

.footer-quick-links .separator {
    color: var(--light-gray);
    margin: 0 5px;
    opacity: 0.7;
    /* Ensure separator aligns correctly */
    display: inline-block;
    line-height: 1; /* Adjust if vertical alignment is off */
}