/* Shared header styles - used across all pages */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0071e3;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: translateX(-4px);
}

.phone-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.phone-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0071e3;
    text-decoration: none;
    transition: color 0.2s ease;
}

.phone-number:hover {
    color: #0051bb;
}

.email-address {
    font-size: 0.9rem;
    color: #0071e3;
    text-decoration: none;
    transition: color 0.2s ease;
}

.email-address:hover {
    color: #0051bb;
}

.consultation-text {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

@media (max-width: 768px) {
    header {
        padding: 12px 16px;
        flex-direction: column;
        gap: 12px;
    }

    .phone-info {
        align-items: center;
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }

    .phone-number {
        font-size: 1rem;
    }

    .email-address {
        font-size: 0.85rem;
    }

    .consultation-text {
        font-size: 0.75rem;
    }

    body {
        padding-top: 150px;
    }
}
