/* Footer Section */
.footer-section {
    background-color: #212529; /* dark background */
    color: #ffffff;
    padding: 80px 20px 40px;
}

.footer-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-link {
    color: #bbbbbb;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #e84545;
    text-decoration: underline;
}

.footer-social {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-social-link img {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-social-link:hover img {
    transform: scale(1.2);
    opacity: 0.8;
}

.footer-copyright {
    font-size: 14px;
    color: #aaaaaa;
    margin-top: 20px;
}

/* Contact text (address, email, phone) */
.footer-section p {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 10px;
}

/* Horizontal rule styling */
.footer-section hr {
    border-top: 1px solid #444;
    margin: 40px 0;
}

/* Responsive */
@media (max-width: 1280px) {
    .footer-section {
        padding: 60px 20px 30px;
    }
    .footer-title {
        font-size: 20px;
    }
}
@media (max-width: 768px) {
    .footer-section {
        padding: 40px 15px 20px;
        text-align: center;
    }
    .footer-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .footer-section p,
    .footer-link,
    .footer-copyright {
        font-size: 14px;
    }
    .footer-social {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 30px 10px 15px;
    }
    .footer-title {
        font-size: 16px;
    }
}
