/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Footer Styling */
.footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    margin: 10px;
}

.footer-column a {
    text-decoration: none;
    color: inherit;
}

.social-icons {
    text-align: center;
}

.social-icon {
    font-size: 24px;
    margin-right: 10px;
    color: #fff;
}

.footer-img {
    max-width: 300px;
}

.contact-info {
    text-align: left;
}

.contact-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-details {
    font-size: 14px;
}

.footer-link {
    color: #fff;
    text-decoration: none;
}

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

.contact-phone,
.contact-fax {
    margin-top: 5px;
}

/* Phone Numbers - Mobile-Only */
.desktop-only {
    display: none;
}

@media screen and (max-width: 768px) {
    .footer-column {
        flex: 1 1 100%;
        text-align: center;
    }

    .contact-phone,
    .contact-fax {
        display: block;
    }

    .contact-phone a,
    .contact-fax a {
        display: inline-block;
        margin-top: 5px;
    }

    .desktop-only {
        display: none;
    }
}

@media screen and (min-width: 769px) {
    .desktop-only {
        display: inline;
    }

    .contact-phone a,
    .contact-fax a {
        display: block;
    }
}

/* Footer Copyright */
.footer-copyright {
    margin-top: 20px;
    font-size: 14px;
}

