.footer {
    background-color: var(--darkBlue-color);
    color: var(--lightWhite-color);
    padding: 25px 0 0;
    width: 100%;
    font-family: 'Roboto', sans-serif;

    .footer-container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 35px;
        margin-bottom: 40px;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .footer-logo {
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--lightWhite-color);
        margin: 0;
    }

    .footer-tagline {
        color: var(--lightBlue2Grey-color);
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
    }

    .social-links {
        display: flex;
        gap: 14px;
    }

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .social-links a:hover {
        background-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

    .social-links svg {
        width: 18px;
        height: 18px;
        fill: var(--lightWhite-color);
    }

    .links-column {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .links-title {
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--lightWhite-color);
        margin: 0 0 8px;
        position: relative;
        padding-bottom: 6px;
        padding-top: 4px;
    }

    .links-title:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 35px;
        height: 2px;
        background-color: var(--primary-color);
    }

    .links-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
        margin-top: -8px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .links-column a {
        color: var(--lightBlue2Grey-color);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

    .links-column a:hover {
        color: var(--white-color);
    }

    /* Contact Us */
    .footer-contact {
        padding: 18px;
    }

    .contact-title {
        font-size: 1.1rem;
        color: #ffffff;
        margin-bottom: 18px;
        position: relative;
        padding-bottom: 6px;
    }

    .contact-title:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 35px;
        height: 2px;
        background-color: #4299e1;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    .contact-item svg {
        width: 18px;
        height: 18px;
        color: var(--primary-color);
        flex-shrink: 0;
        margin-top: 2px;
    }

    .contact-item a {
        color: #a0aec0;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .contact-item a:hover {
        color: #ffffff;
        text-decoration: underline;
    }

    .working-hours {
        color: #a0aec0;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .working-hours div {
        margin-bottom: 3px;
    }

    @media (max-width: 768px) {
        .footer-contact {
            text-align: center;
        }

        .contact-title:after {
            left: 50%;
            transform: translateX(-50%);
        }

        .contact-item {
            flex-direction: row;
            align-items: flex-start;
            justify-content: center;
        }

        .working-hours {
            margin-left: 0;
        }
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 18px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .copyright {
        color: #a0aec0;
        font-size: 0.85rem;
        margin: 0;
    }

    .footer-legal {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-legal a {
        color: #a0aec0;
        font-size: 0.8rem;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-legal a:hover {
        color: var(--white-color);
    }

    .footer-legal span {
        color: #4a5568;
        font-size: 0.8rem;
    }

    @media (max-width: 768px) {
        .footer-content {
            grid-template-columns: 1fr;
            gap: 25px;
        }
        
        .footer-brand {
            align-items: center;
            text-align: center;
        }
        
        .links-column {
            align-items: center;
            text-align: center;
        }
        
        .links-title:after,
        .newsletter-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .footer-newsletter {
            align-items: center;
        }
        
        .newsletter-form {
            width: 100%;
            max-width: 350px;
        }

        .footer-bottom {
            align-items: center;
            text-align: center;
        }
    }

    @media (max-width: 480px) {
        .footer {
            padding: 35px 0 0;
        }
        
        .footer-content {
            gap: 20px;
        }
        
        .footer-bottom {
            flex-direction: column;
            gap: 6px;
        }
        
        .footer-legal {
            flex-direction: column;
            gap: 6px;
        }
        
        .footer-legal span {
            display: none;
        }
    }
}