footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    flex-shrink: 0;
}

.footer-container {
    display: flex;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.footer-info p {
    margin: 0.5rem 0;
    font-size: 1.6rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 0.8rem;
    padding: 0;
    margin: 0;
    flex-direction: column !important;;
    justify-content: center;
}

.footer-links ul li a {
    text-decoration: none;
    color: #00a030;
    font-size: 1.6rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #f5a623;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    padding-top: 60px;
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 600px;
    color: #333;
    font-family: Arial, sans-serif;
}

.close {
    color: #aaa;
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
}

h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.p-footer {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.btn-enter {
    display: inline-block;
    font-size: 1.8rem;
    padding: 1rem 2rem;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background 0.3s;
    margin-top: 20px;
}

.btn-enter:hover {
    background-color: #555;
}


@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links ul {
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-info p {
        font-size: 1.2rem;
    }

    .footer-links ul li a {
        font-size: 1.2rem;
    }
}

@media (min-width: 1025px) {
    .footer-info p {
        font-size: 1.6rem;
    }

    .footer-links ul li a {
        font-size: 1.6rem;
    }
}
