  <style>
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      min-height: 100vh;
    }

    body::before {
      content: '';
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 2px, transparent 2px);
      background-size: 60px 60px;
      pointer-events: none;
      z-index: -1;
    }

    .navbar {
      background: linear-gradient(135deg, #667eea, #764ba2);
      padding: 15px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .navbar ul {
      display: flex;
      justify-content: center;
      gap: 30px;
      list-style: none;
    }

    .navbar a {
      color: white;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .navbar a:hover { color: #ffd86b; }


    .container {
      max-width: 900px;
      margin: 40px auto;
      padding: 40px 20px;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      text-align: center;
    }

    .profile-image {
      width: 150px; height: 150px;
      border-radius: 50%;
      object-fit: cover;
      border: 5px solid #667eea;
      margin-bottom: 20px;
    }

    .main-title {
      font-size: 2.8rem;
      font-weight: 700;
      background: linear-gradient(135deg, #667eea, #764ba2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 10px;
    }

    .subtitle { font-size: 1.2rem; color: #7f8c8d; margin-bottom: 30px; }

    .intro-text {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #34495e;
      margin-bottom: 30px;
    }

    .cta-button {
      font-size: 1.2rem;
      font-weight: bold;
      padding: 15px 30px;
      color: #fff;
      background: linear-gradient(135deg, #667eea, #764ba2);
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
    .cta-button:hover { transform: translateY(-3px); }

    .highlights {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .highlight-card {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .highlight-card:hover { transform: translateY(-5px); }
    .highlight-card h3 { margin-bottom: 10px; color: #2c3e50; }
    .highlight-card a { color: #667eea; font-weight: 600; text-decoration: none; }
    .highlight-card a:hover { text-decoration: underline; }
  </style>
