@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

:root {
    --first-color: #003D71;
    --second-color: #0088CC;
    --third-color: #6FD0F6;
    --fourth-color: #002a50;
    --white: #ffffff;
    --black: #1d1d1d;
    --background: #f8f9fa;
    --font-title: "nasalisation", sans-serif;
    --gray-color: #484848;
}

.footer {
    background: #ffffff;
    color: #333333;
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333333;
    border-bottom: 2px solid #2a5298;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-brand {
    max-width: 320px;
}

.brand-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.brand-logo img {
    max-width: 180px;
    height: auto;
    border-radius: 6px;
}

.company-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: #666666;
}

.social-icons {
    justify-content: start;
    display: flex;
    gap: 0.75rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    color: #2a5298;
    text-decoration: none;
    font-size: 1.1rem;
}

.social-icons a:hover {
    background: #2a5298;
    color: white;
}

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

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

.footer-list a,
.contact-item {
    color: #666666;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-list a:hover {
    color: #2a5298;
}

.contact-item {
    margin-bottom: 0.75rem;
    padding: 0.25rem 0;
}

.contact-item i {
    width: 18px;
    font-size: 1rem;
    color: #2a5298;
}

.contact-item:hover {
    color: #333333;
}

.address-link {
    display: inline-block;
    color: #666666;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0.5rem 0;
    border-radius: 6px;
}

.address-link:hover {
    color: #2a5298;
}

.footer-bottom {
    background: #f8f9fa;
    color: #666666;
    text-align: center;
    padding: 1.25rem 1rem;
    border-top: 1px solid #e0e0e0;
}

.footer-bottom p {
    font-size: 0.85rem;
    max-width: 800px;
    margin: 0 auto;
}

.footer-bottom a {
    color: #333333;
    font-weight: 600;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #2a5298;
}

@media (max-width: 768px) {
    .footer-container {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }

    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .social-icons a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .brand-logo img {
        max-width: 160px;
    }

    .footer-brand { 
        text-align: center;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 1.25rem 1rem;
        gap: 1.25rem;
    }

    .footer-bottom {
        padding: 1rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}