
        /* Footer Styles */
        footer {
            margin-top: 80px;
            padding: 60px 0 0;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #0170BF, transparent);
        }

        .footer-content {
            padding-bottom: 40px;
        }

        .footer-item {
            margin-bottom: 30px;
        }

        .footer-item h4 {
            font-size: 18px;
            font-weight: 700;
            color: #2a2a2a;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-item h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #014E9A, #0170BF);
            border-radius: 2px;
        }

        /* About Section */
        .footer-about .logo {
            margin-bottom: 20px;
        }

        .footer-about .logo img {
            width: 140px;
            height: auto;
            transition: transform 0.3s ease;
        }

        .footer-about .logo img:hover {
            transform: scale(1.05);
        }

        .footer-about .contact-email {
            color: #6c757d;
            font-weight: 500;
            font-size: 15px;
            text-decoration: none;
            display: inline-block;
            margin: 15px 0 20px;
            transition: color 0.3s ease;
        }

        .footer-about .contact-email:hover {
            color: #0170BF;
        }

        .social-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            gap: 10px;
        }

        .social-links li a {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, #014E9A, #0170BF);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(1, 78, 154, 0.3);
            text-decoration: none;
        }

        .social-links li a:hover {
            background: linear-gradient(135deg, #0170BF, #00A8E8);
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(1, 112, 191, 0.4);
        }

        /* Footer Links */
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links li:last-child {
            margin-bottom: 0;
        }

        .footer-links li a {
            font-size: 15px;
            color: #6c757d;
            text-decoration: none;
            display: inline-block;
            position: relative;
            padding-left: 18px;
            transition: all 0.3s ease;
        }

        .footer-links li a::before {
            content: '›';
            position: absolute;
            left: 0;
            color: #0170BF;
            font-size: 20px;
            font-weight: bold;
            transition: transform 0.3s ease;
        }

        .footer-links li a:hover {
            color: #0170BF;
            padding-left: 23px;
        }

        .footer-links li a:hover::before {
            transform: translateX(3px);
        }

        /* Newsletter Section */
        .newsletter-text {
            font-size: 14px;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .newsletter-form {
            position: relative;
            height: 50px;
            border-radius: 25px;
            overflow: hidden;
            background: linear-gradient(135deg, #014E9A, #0170BF);
            box-shadow: 0 4px 12px rgba(1, 78, 154, 0.3);
            transition: all 0.3s ease;
        }

        .newsletter-form:hover {
            box-shadow: 0 6px 16px rgba(1, 112, 191, 0.4);
            transform: translateY(-2px);
        }

        .newsletter-form input {
            width: 100%;
            height: 100%;
            padding: 0 60px 0 20px;
            border: none;
            background: transparent;
            color: #fff;
            font-size: 14px;
            outline: none;
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.8);
        }

        .newsletter-form button {
            position: absolute;
            right: 5px;
            top: 5px;
            width: 40px;
            height: 40px;
            border: none;
            border-radius: 50%;
            background: #fff;
            color: #014E9A;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background: #0170BF;
            color: #fff;
            transform: rotate(15deg) scale(1.05);
        }

        /* Copyright */
        .footer-copyright {
            border-top: 1px solid #dee2e6;
            padding: 25px 0;
            text-align: center;
        }

        .footer-copyright p {
            color: #6c757d;
            font-size: 14px;
            line-height: 1.8;
            margin: 0;
        }

        .footer-copyright a {
            color: #0170BF;
            font-weight: 500;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-copyright a:hover {
            color: #014E9A;
        }

        /* Responsive */
        @media (max-width: 992px) {
            footer {
                margin-top: 60px;
                padding-top: 40px;
            }

            .footer-item {
                margin-bottom: 35px;
            }

            .footer-content {
                padding-bottom: 30px;
            }
        }

        @media (max-width: 768px) {
            footer {
                margin-top: 50px;
                padding-top: 35px;
            }

            .footer-item {
                margin-bottom: 30px;
            }

            .footer-item h4 {
                font-size: 17px;
                margin-bottom: 18px;
            }

            .footer-about .logo img {
                width: 110px;
            }

            .footer-about .contact-email {
                font-size: 14px;
                margin: 12px 0 18px;
            }

            .social-links li a {
                width: 36px;
                height: 36px;
                font-size: 15px;
            }

            .footer-links li {
                margin-bottom: 10px;
            }

            .footer-links li a {
                font-size: 14px;
            }

            .newsletter-text {
                font-size: 13px;
                margin-bottom: 15px;
            }

            .newsletter-form {
                height: 48px;
            }

            .newsletter-form input {
                font-size: 13px;
                padding: 0 55px 0 18px;
            }

            .newsletter-form button {
                width: 38px;
                height: 38px;
            }

            .footer-copyright {
                padding: 20px 0;
            }

            .footer-copyright p {
                font-size: 13px;
                line-height: 1.6;
            }
        }

        @media (max-width: 576px) {
            footer {
                margin-top: 40px;
                padding-top: 30px;
            }

            .footer-content {
                padding-bottom: 20px;
            }

            .footer-item {
                margin-bottom: 35px;
                text-align: center;
            }

            .footer-item:last-child {
                margin-bottom: 20px;
            }

            .footer-item h4 {
                font-size: 17px;
                margin-bottom: 20px;
                font-weight: 600;
            }

            .footer-item h4::after {
                left: 50%;
                transform: translateX(-50%);
                width: 40px;
            }

            .footer-about .logo {
                text-align: center;
                margin-bottom: 15px;
            }

            .footer-about .logo img {
                width: 110px;
            }

            .footer-about .contact-email {
                display: block;
                text-align: center;
                font-size: 14px;
                margin: 15px 0 20px;
            }

            .social-links {
                justify-content: center;
                flex-wrap: wrap;
                gap: 12px;
            }

            .social-links li a {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .footer-links {
                text-align: center;
            }

            .footer-links li {
                margin-bottom: 12px;
            }

            .footer-links li a {
                font-size: 14px;
                padding-left: 0;
                display: inline-block;
            }

            .footer-links li a::before {
                display: none;
            }

            .footer-links li a:hover {
                padding-left: 0;
            }

            .newsletter-text {
                text-align: center;
                font-size: 14px;
                line-height: 1.6;
                margin-bottom: 18px;
                padding: 0 10px;
            }

            .newsletter-form {
                height: 48px;
                max-width: 320px;
                margin: 0 auto;
            }

            .newsletter-form input {
                font-size: 13px;
                padding: 0 55px 0 18px;
            }

            .newsletter-form button {
                width: 38px;
                height: 38px;
                font-size: 15px;
            }

            .footer-copyright {
                padding: 25px 15px;
            }

            .footer-copyright p {
                font-size: 13px;
                line-height: 1.8;
                padding: 0 10px;
            }
        }

        @media (max-width: 400px) {
            footer {
                padding-top: 25px;
            }

            .footer-item {
                margin-bottom: 30px;
            }

            .footer-item h4 {
                font-size: 16px;
                margin-bottom: 18px;
            }

            .footer-about .logo img {
                width: 100px;
            }

            .footer-about .contact-email {
                font-size: 13px;
            }

            .social-links {
                gap: 10px;
            }

            .social-links li a {
                width: 38px;
                height: 38px;
                font-size: 15px;
            }

            .footer-links li {
                margin-bottom: 10px;
            }

            .footer-links li a {
                font-size: 13px;
            }

            .newsletter-text {
                font-size: 13px;
                margin-bottom: 15px;
            }

            .newsletter-form {
                height: 46px;
                max-width: 280px;
            }

            .newsletter-form input {
                font-size: 12px;
                padding: 0 52px 0 16px;
            }

            .newsletter-form button {
                width: 36px;
                height: 36px;
                font-size: 14px;
            }

            .footer-copyright {
                padding: 20px 10px;
            }

            .footer-copyright p {
                font-size: 12px;
                line-height: 1.7;
            }
        }

/* Instagram Grid */
.footer-instagram .instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 20px;
}

.instagram-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(1, 78, 154, 0.9), rgba(1, 112, 191, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-overlay i {
    color: #fff;
    font-size: 24px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.instagram-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(1, 112, 191, 0.3);
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-item:hover .instagram-overlay i {
    transform: scale(1);
}

/* Responsive Instagram Grid */
@media (max-width: 768px) {
    .footer-instagram .instagram-grid {
        gap: 6px;
    }
    
    .instagram-overlay i {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .footer-instagram .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        max-width: 280px;
        margin: 20px auto 0;
    }
    
    .instagram-item {
        border-radius: 8px;
    }
    
    .instagram-overlay i {
        font-size: 20px;
    }
}

@media (max-width: 400px) {
    .footer-instagram .instagram-grid {
        gap: 6px;
        max-width: 260px;
    }
    
    .instagram-item {
        border-radius: 6px;
    }
    
    .instagram-overlay i {
        font-size: 18px;
    }
}
