from services.ai_router import ask_ai


def marketing_recommendations(business_profile):
    prompt = f"""
You are an AI marketing strategist.

Generate a study abroad marketing plan for the following organization profile:
{business_profile}

Return:
- campaign ideas
- messaging pillars
- channel mix
- lead nurturing suggestions
"""
    return ask_ai(prompt)
