.hd-nav-container {
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 24px;
    box-sizing: border-box;
}

.hd-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.hd-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hd-nav-brand {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.5px;
    font-family: sans-serif;
    color: #1e2d4a;
}

.hd-custom-logo {
    height: auto;
    width: auto;
    display: block;
}

.hd-nav-links-wrapper {
    margin-left: auto;
}

.hd-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 32px;
}

.hd-nav-link {
    text-decoration: none;
    color: #1e2d4a;
    font-weight: 700;
    font-size: 16px;
    transition: color 0.2s ease-in-out;
    font-family: sans-serif;
}

.hd-nav-btn {
    display: inline-block;
    background-color: #1e2d4a;
    color: #ffffff !important;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: opacity 0.2s ease-in-out, transform 0.1s ease-in-out;
    font-family: sans-serif;
    box-shadow: 0 4px 10px rgba(30, 45, 74, 0.15);
}

.hd-nav-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.hd-nav-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hd-nav-links-wrapper {
        display: none; /* Hide on tablets/mobile for layout sanity, or customize as needed */
    }
}
