.footer {
    background-color: #1E1E1E;
    color: #fff;
    padding: 50px 0;
    font-family: 'Arial', sans-serif;
    position: relative;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content h2 {
    font-size: 28px;
    color: #00bfae;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.footer-content p {
    font-size: 16px;
    color: #bbb;
    margin-bottom: 30px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
    color: #00bfae;
    transform: translateY(-3px);
}

.footer-social {
    text-align: center;
}

.footer-social h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    background-color: #333;
    border-radius: 50%;
    padding: 15px;
    color: #fff;
    font-size: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    background-color: #00bfae;
    transform: scale(1.1);
}

.footer-bottom {
    background-color: #111;
    padding: 25px;
    font-size: 14px;
    color: #bbb;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-content h2 {
        font-size: 24px;
    }

    .footer-links ul {
        flex-direction: column;
        gap: 15px;
    }

    .social-icons {
        gap: 15px;
    }

    .footer-bottom {
        font-size: 12px;
    }
}
