.brand_logo {
    max-width: 100%;
    height: auto;
    padding: 10px;
    margin-right: 10px;
    border-radius: 4px;
}

.brand_name {
    font-family: Mulish, sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    /* Adjusted for better responsiveness */
    white-space: nowrap;
}

/* Responsive adjustments for the footer logo */
@media (min-width: 576px) {
    .brand_name {
        font-size: 1.75rem;
    }
}

@media (min-width: 768px) {
    .brand_name {
        font-size: 2rem;
    }
}

@media (min-width: 992px) {
    .brand_name {
        font-size: 2.25rem;
    }
}

@media (min-width: 1200px) {
    .brand_name {
        font-size: 2.5rem;
    }
}



/* Adjust social icons size */
.socials .icon-facebook,
.socials .icon-instagram {
    font-size: 1.5rem;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.socials .icon-facebook:hover,
.socials .icon-instagram:hover {
    color: #26a4d6;
    transform: scale(1.1);
}

/* Footer background and text colors */
.footer.accent {
    background-color: #e78c24;
    /* Adjust as needed */
    color: #fff;
}

.footer.accent .link {
    color: #fff;
    transition: color 0.3s ease-in-out;
}

.footer.accent .link:hover {
    color: #ddeaf6;
}

.footer_copyright {
    background-color: #f7fafd;
    color: #2c3c4a;
    font-size: 1rem;
}

.footer_copyright a {
    color: #2c3c4a;
    text-decoration: none;
}

.footer_copyright a:hover {
    text-decoration: underline;
}