/* Header navigation styles for About page */
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.header-left {
    flex: 1;
}

.header-right {
    margin-left: 30px;
}

.header-right ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

.header-right ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-right ul li a:hover,
.header-right ul li a.active {
    color: #ff4d4d;
}

/* Responsive styles */
@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .header-right {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }
    
    .header-right ul {
        flex-wrap: wrap;
        gap: 15px;
    }
}
