﻿.footer {
    background-color: #1a1a1a;
    color: #f0f0f0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-section {
    flex: 1 1 300px;
}

    .footer-section h3,
    .footer-section h4 {
        color: #fff;
        margin-bottom: 15px;
    }

    .footer-section p,
    .footer-section a,
    .footer-section li {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #ccc;
        text-decoration: none;
    }

        .footer-section a:hover {
            color: #fff;
            text-decoration: underline;
        }

    .footer-section ul {
        list-style: none;
        padding: 0;
    }

    .footer-section li {
        margin-bottom: 8px;
    }

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #aaa;
    border-top: 1px solid #333;
    padding-top: 10px;
}

.footer-copyright {
    background-color: #004aad;
    color: white;
    text-align: center;
    padding: 15px 10px;
    font-size: 0.9rem;
    border-top: 1px solid #333;
}

    .footer-copyright p {
        margin: 0;
    }

@media (max-width: 768px) {
    .footer {
        padding: 25px 10px 10px;
        text-align: center;
    }

    .footer-container {
        gap: 15px;
    }

    .footer-section {
        flex: 1 1 100%;
    }

        .footer-section h3 {
            font-size: 1rem;
            margin-bottom: 10px;
        }

        .footer-section h4 {
            font-size: 0.95rem;
            margin-bottom: 8px;
        }

        .footer-section p,
        .footer-section a,
        .footer-section li {
            font-size: 0.8rem;
            line-height: 1.4;
        }

    .footer-bottom {
        margin-top: 20px;
        font-size: 0.75rem;
    }

    .footer-copyright {
        padding: 10px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 20px 8px 8px;
    }

    .footer-section h3 {
        font-size: 0.95rem;
    }

    .footer-section h4 {
        font-size: 0.9rem;
    }

    .footer-section p,
    .footer-section a,
    .footer-section li {
        font-size: 0.75rem;
    }

    .footer-bottom,
    .footer-copyright {
        font-size: 0.7rem;
    }
}
