/* Footer Styles */
.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    margin-top: 60px;
}

.footer-widgets {
    background: #1a1a1a;
    padding: 40px 0;
    border-bottom: 1px solid #333;
}

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

.footer-widget {
    color: #cccccc;
}

.footer-widget-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007cba;
    display: inline-block;
}

.footer-widget p {
    color: #999;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

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

.footer-widget ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-widget ul li a:hover {
    color: #007cba;
    padding-left: 10px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.contact-info strong {
    color: #ffffff;
}

.social-links-footer {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links-footer a {
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: inline-block;
}

.social-links-footer a:hover {
    transform: translateY(-2px);
}

.footer-info {
    background: #111;
    padding: 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.site-info a {
    color: #007cba;
    text-decoration: none;
}

.footer-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.footer-navigation a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-navigation a:hover {
    color: #007cba;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    margin: 0;
    color: #666;
    font-size: 13px;
}

.privacy-policy-link {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    margin-left: 20px;
}

.privacy-policy-link:hover {
    color: #007cba;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-widgets-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .social-links-footer {
        justify-content: center;
    }
}