.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    color: #0f2a44;
}

.logo-text span {
    font-size: 13px;
}

.logo-text strong {
    font-size: 18px;
}

.column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align:center;
}

h2 {
    font-size:30px;
    margin-bottom:50px;
    color:#0f2a44;
}

.top-bar {
    background:#0f2a44; 
    color:white;
    font-size: 14px;
}

.top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.social-icons a {
    color:#d4af37;
    margin-left: 10px;
}

.main-header {
    background:white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo strong {
    font-size: 18px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 600;
    font-size: 1.1rem;
    color:#0f2a44;
    position: relative;
    text-decoration: none;
}

nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background:#d4af37;
    transition: .3s;
}

nav ul li a:hover::after {
    width:100%;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor:pointer;color:#0f2a44;
}

.mobile-overlay {
    display: none;
}

@media(max-width:768px){

    .logo img {
        height: 45px;
    }

    .logo-text strong {
        font-size: 16px;
    }
}

@media(max-width:992px) {

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100%;
        background:#0f2a44;
        flex-direction: column;
        padding-top: 80px;
        transition: .3s;
        z-index: 1001;
    }

    nav.active {
        right:0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 20px 0;
    
    }
    nav ul li a {
        text-decoration: none;
        font-weight: 600;
        color: white;
        position: relative;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background:rgba(0,0,0,0.5);
        z-index: 1000;
    }

    .mobile-overlay.active {
        display:block;
    }
}