/* Footer Styles */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.footer-left {
    flex: 0 0 auto;
}

.footer-logo {
    height: 80px;
    width: auto;
}

.footer-right {
    flex: 0 0 auto;
}

.footer-adt {
    font-size: 14.4px;
    text-align: right;
}

.contact-group {
    display: flex;
    gap: 4rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item .label {
    font-size: 0.9rem;
    color: #666;
}

.contact-item a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: rgb(82, 114, 202);
}

.footer-bottom {
    border-top: 1px solid rgb(221 221 221);
    padding: 1.5rem 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 0.4fr;
    align-items: center;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 0px;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    /* align to the right column of the footer grid */
    justify-self: end;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: rgba(72, 124, 213, 1);
}

.separator {
    color: #ddd;
    font-size: 0.8rem;
}

@media (max-width: 1400px) {
    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2rem 24px;
    }

    .footer-bottom {
        padding: 1.5rem 24px;
    }

}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 0rem;
    }

    .contact-group {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .contact-item {
        align-items: center;
    }

    .footer-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
        justify-items: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        margin: auto;
    }

    .footer-adt {
        font-size: 14.4px;
        text-align: unset;
    }
}