/* Modern Footer */
.footer_s {
    background: var(--dark-bg);
    color: #e0e0e0;
    padding: 48px 0;
    margin-top: 48px;
    border-top: 4px solid var(--primary-color);
}

/* Footer Layout - Flexbox for spacing */
.footer_s .head-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.footer_s h2 {
    color: var(--white);
    font-size: 2em;
    margin-bottom: 32px;
}

.footer_s p {
    margin: 10px 0;
    font-size: 1.1em;
}

.footer_s a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.25em;
    font-weight: bold;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 5px 0;
}

.footer_s a:hover {
    color: var(--primary-color);
}

.footcol p:first-child {
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 5px;
}

.footer_s .left,
.footer_s .right {
    margin: 0;
    width: auto;
    padding: 0;
}

.footer_s .right {
    text-align: left;
    /* Align text left as requested */
}


@media (max-width: 768px) {
    .footer_s {
        padding: 32px 0;
    }

    .footer_s .head-container {
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        text-align: center;
    }

    .footer_s .left,
    .footer_s .right {
        width: 100%;
        text-align: center;
    }

    /* Ensuring specific override for the right column */
    .footer_s .right {
        text-align: center !important;
    }
}