.footer {
    position: relative;
    background: #ff9900;
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    font-family: 'Barlow', sans-serif;
}

.footer .section-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer h2 {
    color: #000000;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer p {
    color: #000000;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.contact-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem; 
    flex-wrap: wrap;
}

.contact-links a {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    background: #FFD700;
    border-radius: 8px;
    color: #000000;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease, color 0.3s ease;
    text-transform: uppercase;
    justify-content: center;
    min-width: 120px; 
}

.contact-links a:hover {
    background: #000000;
    color: #FFD700;
    transform: translateY(-2px);
}

.contact-links a i {
    margin-right: 8px;
    font-size: 1.2rem;
    transition: transform 0.2s ease, color 0.3s ease;
}

.contact-links a:hover i {
    transform: scale(1.1);
    color: #FFD700;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #000000;
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 30px 15px;
    }

    .footer h2 {
        font-size: 1.6rem;
    }

    .footer p {
        font-size: 0.9rem;
    }

    .contact-links a {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        min-width: 100px; 
    }

    .contact-links a i {
        font-size: 1rem;
        margin-right: 6px;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 20px 10px;
    }

    .footer h2 {
        font-size: 1.4rem;
    }

    .contact-links {
        gap: 1rem;
    }

    .contact-links a {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        min-width: 90px; 
    }

    .contact-links a i {
        margin-right: 5px;
    }
}
