/* ===== Info Page Specific Styles ===== */

.info-header {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    padding: 3rem 0 2rem;
    text-align: center;
}

.header-with-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.header-with-logo .femi-logo {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
    transition: all 0.3s ease;
    /* הוסר רקע לבן עגול */
}

.header-with-logo .femi-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.header-text {
    text-align: center;
}

.header-text h1 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.header-text .subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .header-with-logo .femi-logo {
        max-width: 180px;
    }

    .header-text h1 {
        font-size: 1.5rem;
    }

    .header-text .subtitle {
        font-size: 1rem;
    }
}
