    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Inter', sans-serif;
      background: linear-gradient(to right, #f8fafc, #eef2f7);
      color: #1f2937;
      line-height: 1.6;
      scroll-behavior: smooth;
    }
    header {
      text-align: center;
      padding: 3rem 1rem 1rem;
      transition: all 0.5s ease-in-out;
    }
    .profile-image {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 1rem;
      border: 4px solid #4f46e5;
    }
    header h1 {
      font-size: 2.5rem;
      color: #4f46e5;
    }
   
    header p {
      font-size: 1.1rem;
      color: #6b7280;
    }
    .hero, .services, .social-links, footer {
      transition: all 0.5s ease-in-out;
    }
    .hero {
      text-align: center;
      padding: 3rem 1rem;
    }
    .hero h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: #111827;
    }
    .hero p {
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto;
    }
    .cta {
      margin-top: 2rem;
    }
    .cta a {
      display: inline-block;
      padding: 0.75rem 1.5rem;
      background: #4f46e5;
      color: #fff;
      text-decoration: none;
      border-radius: 8px;
      font-weight: 600;
      transition: background 0.3s ease;
    }
    .cta a:hover {
      background: #4338ca;
    }
    .social-links {
      display: flex;
      justify-content: center;
      gap: 1.2rem;
      margin: 3rem 0;
      flex-wrap: wrap;
    }
    .social-links a {
      color: #4f46e5;
      font-size: 1.8rem;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .social-links a:hover {
      color: #4338ca;
    }
    .services {
      text-align: center;
      padding: 2rem 1rem;
    }
    .services h3 {
      font-size: 1.75rem;
      margin-bottom: 1rem;
    }
    .services ul {
      list-style: none;
      padding: 0;
    }
    .services li {
      margin: 0.5rem 0;
    }
    footer {
      text-align: center;
      padding: 2rem 1rem;
      background: #f3f4f6;
      font-size: 0.9rem;
      color: #6b7280;
    }
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.5);
    }
    .modal-content {
      background-color: #fff;
      margin: 10% auto;
      padding: 2rem;
      border: 1px solid #ccc;
      width: 90%;
      max-width: 600px;
      border-radius: 10px;
    }
    .modal-content h3 {
      margin-bottom: 1rem;
    }
    .close {
      float: right;
      font-size: 1.5rem;
      cursor: pointer;
    }
    form input, form textarea {
      width: 100%;
      padding: 0.5rem;
      margin: 0.5rem 0;
      border: 1px solid #ccc;
      border-radius: 5px;
    }
    form button {
      background: #4f46e5;
      color: white;
      padding: 0.5rem 1rem;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
    .hero small {
      display: block;
      margin-top: 0.5rem;
      font-size: 0.95rem;
      color: #6b7280;
    }