﻿footer {
    background: unset;
    color: #000;
    width: 100%;
    padding: 40px 0 20px;
    border-top: 1px solid #e9e9e9;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

    .footer-content h3 {
        font-size: 28px;
        font-weight: 600;
        margin: 0;
    }

    .footer-content p {
        font-size: 16px;
        color: dimgray;
        max-width: 600px;
        margin: 10px 0 0;
        line-height: 1.6;
        font-weight: 300;
    }

.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}

    .footer-bottom p {
        font-size: 14px;
        margin: 5px 0;
    }

        .footer-bottom p a {
            color: #000;
            font-weight: 500;
            text-decoration: none;
        }

            .footer-bottom p a:hover {
                color: #27bcda;
            }

.footer-menu ul {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 5px 0;
}

    .footer-menu ul li a {
        color: #000;
        text-decoration: none;
        font-size: 14px;
    }

        .footer-menu ul li a:hover {
            color: #27bcda;
        }

/* Responsive */
@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-menu ul {
        justify-content: center;
        margin-top: 10px;
    }
}





