/* footer.css */
@import url('https://fonts.googleapis.com/css2?family=Concert+One&display=swap');

.footer {
    background-color: rgba(30, 60, 120, 0.3);
    color: rgba(255,255,255,1);
    padding: 10px 20px;
    font-family: Arial, sans-serif;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
    padding: 0 2.5%;
}

.footer-section h3 {
    font-family: 'Concert One', cursive;
    font-size: 1.4em;
    margin-bottom: 15px;
    color: rgba(255,255,255,1);
}

.footer-section p, .footer-section ul {
    font-size: 0.9em;
    line-height: 1.6;
    text-align: justify;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: rgba(30, 60, 120, 1);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8em;
}

@media (max-width: 999.99px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-section {
        width: 90%;
        margin-bottom: 30px;
    }
}