# services.py
services = [
"Web Development & Design",
"Custom Software Solutions",
"Application Development",
"Technical Consulting"
]
def list_services():
print("Services I Offer:")
for s in services:
print(f"- {s}")
if __name__ == "__main__":
list_services()