.hamsa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hamsa-site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.hamsa-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 110px;
    gap: 40px;
}

/* Logo */
.custom-logo {
    max-width: 260px;
    height: auto;
    display: block;
}

/* Site branding */
.site-title {
    text-decoration: none;
    font-size: 32px;
    font-weight: 700;
    color: #222;
}

/* Navigation */
.hamsa-primary-nav {
    margin-left: auto;
}

.hamsa-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hamsa-menu li {
    margin: 0;
}

.hamsa-menu a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #222;
    transition: 0.3s;
}

.hamsa-menu a:hover {
    color: #ff6600;
}

/* Mobile */
@media (max-width: 768px) {

    .hamsa-header-inner {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        padding: 20px 0;
    }

    .custom-logo {
        max-width: 180px;
    }

    .hamsa-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}