.custom-header-container-197 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #ffffff; /* Default, can be overridden by Elementor styles */
}

.custom-header-logo-197 img {
    max-width: 100%;
    height: auto;
    display: block;
}

.custom-header-nav-197 ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px; /* Space between nav items */
    align-items: center;
}

.custom-header-nav-197 a {
    text-decoration: none;
    color: #333333; /* Default text color */
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.custom-header-nav-197 a:hover {
    color: #007bff; /* Default hover color */
}

.custom-header-nav-197 a svg {
    fill: #333333;
    transition: fill 0.3s ease;
}

.custom-header-nav-197 a:hover svg {
    fill: #007bff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-header-container-197 {
        flex-direction: column;
        text-align: center;
    }

    .custom-header-nav-197 ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
}