"""
Adulthood Events Package
Career, relationships, and family events (ages 18+)

Modules:
- career: Jobs and employment
- romance: Marriage and long-term relationships
- family: Children and parenthood
- life_events: Everyday adult experiences and challenges
"""

from .career import *
from .romance import *
from .family import *
from .life_events import *

__all__ = [
    # Career
    'firstJob',
    'jobApplication',
    'employeeOfTheMonth',
    'openbankAccount',
    # Romance
    'marriage',
    'wedding',
    # Family
    'haveChild',
    'pregnant',
    'childBorn',
    # Life Events
    'firstApartment',
    'workLifeBalance',
    'forgotBirthdayCall',
    'friendsDrifting',
    'unexpectedBill',
    'promotionOpportunity',
    'agingParent',
    'careerChangeDesire',
    'coworkerRivalry',
    'divorceConsideration',
]
