.header-logo-container {
    position: absolute;
    bottom: 60px;
    left: 20px;
    display: flex;
    align-items: center;
    z-index: 10;
}

.header-logo {
    height: 60px;
    width: auto;
    margin-right: 10px;
}

.header-logo-text {
    color: white;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 1px;
}

.header-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 0;
    z-index: 5;
}

.header-nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.header-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.header-nav-links a:hover {
    color: var(--color-orange);
}
