.custom-navbar {
    background-color: #fff;
    padding: 0;
    margin: 0;
    border-bottom: 3px solid #007bff;
}

.logo-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem 0 3rem;
    position: relative;
}

.logo {
    height: 48px;
    object-fit: contain;
}

.logo-border {
    height: 3px;
    width: calc(100% - 7.2rem);
    margin: 0 auto;
    margin-left: 3rem;
    background-color: #007bff;
}

.nav-links-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1rem 0;
    flex-wrap: wrap;
}

.nav-links-bar a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links-bar a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background-color: #007bff;
    transition: width 0.3s ease;
}

.nav-links-bar a:hover {
    color: #007bff;
}

.nav-links-bar a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .logo-bar {
        padding: 0.8rem 1rem 0 1rem;
    }
    .logo {
        height: 40px;
    }
    .nav-links-bar {
        flex-direction: row;
        gap: 2rem;
        padding: 1rem 0;
    }
    .nav-links-bar a {
        font-size: 1rem;
    }
    .logo-border {
        width: calc(100% - 3rem);
        margin: 0 auto;
        margin-left: 1rem;
    }
}

.site-footer {
    background-color: #f9f9f9;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 3px solid #007bff;
}


/* Logo Bar */

.footer-logo-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem 0 3rem;
}

.footer-logo {
    height: 44px;
    object-fit: contain;
}

.footer-logo-border {
    height: 3px;
    width: calc(100% - 7.1rem);
    margin: 0 auto;
    background-color: #007bff;
    margin-left: 3rem;
}


/* Content Grid */

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2rem 3rem;
    gap: 2rem;
}

.footer-column {
    flex: 1 1 220px;
    min-width: 200px;
}

.footer-column h3 {
    color: #005bac;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p {
    line-height: 1.6;
    font-size: 15px;
}

.footer-column a {
    display: block;
    text-decoration: none;
    color: #333;
    margin-bottom: 0.4rem;
    font-size: 15px;
    transition: all 0.2s ease;
}

.footer-column a:hover {
    color: #007bff;
    transform: translateX(3px);
}


/* Social Icons */

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-icons a img {
    width: 28px;
    height: 28px;
    margin-right: 8px;
    background: #0497ca;
    padding: 5px;
    border-radius: 6px;
    transition: transform 0.2s ease;
}

.social-icons a img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding: 1rem;
    font-size: 14px;
    background: #eee;
    color: #555;
}

.footer-column.quick-links {
    flex: 0 1 180px;
}

.footer-column.contact-info {
    flex: 2 1 300px;
}

@media (max-width: 768px) {
    .footer-logo {
        height: 36px;
    }
    .footer-logo-bar {
        padding: 0.5rem 1rem 0 1rem;
    }
    .footer-logo-border {
        width: calc(100% - 2.9rem);
        margin-bottom: 0.5rem;
        margin-left: 1rem;
    }
    .footer-content {
        padding: 1rem 1rem;
        gap: 1rem;
    }
    .footer-column {
        margin: 0.5rem 0;
    }
    .social-icons {
        justify-content: center;
    }
    .footer-bottom {
        padding: 0.5rem;
        font-size: 13px;
    }
    .footer-bottom h3 {
        text-align: center;
    }
    .footer-column.contact-info h3 {
        text-align: center;
    }
    .footer-column.contact-info p {
        text-align: center;
    }
    .footer-column.quick-links h3 {
        text-align: center;
    }
    .footer-column.quick-links a {
        text-align: center;
    }
    .social-links-header-footer {
        display: flex;
        justify-content: center;
    }
}