@charset "utf-8";
/* CSS Document */
    <style>
    body {
      background-color: black;
      margin: 0;
      font-family: Arial, sans-serif;
    }
    table {
      width: 100%;
      text-align: center;
      background-color: black;
    }
    td {
      padding: 12px;
    }
    a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      font-size: 16px;
    }
    a:hover {
      color: cyan;
    }
  </style>
  <style>
    body {
      font-family: 'Segoe UI', sans-serif;
      background: #f9f9f9;
      margin: 0;
      color: #333;
    }

    header {
      background-color: #00A3E0;
      color: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 30px 40px;
      flex-wrap: wrap;
    }

    .header-text h1 {
      margin: 0;
      font-size: 2.5em;
    }

    .header-text p {
      margin: 5px 0 0;
      font-size: 1.1em;
    }

    .profile-img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid #fff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .container {
      max-width: 900px;
      margin: auto;
      padding: 40px 20px;
    }

    .section {
      background: white;
      padding: 25px;
      margin-bottom: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    h2 {
      color: #2a9d8f;
      margin-top: 0;
    }

    ul {
      list-style: none;
      padding: 0;
    }

    ul li::before {
      content: "✔";
      color: #2a9d8f;
      margin-right: 10px;
    }

   footer {
      background-color: #023e8a;
      color: white;
      text-align: center;
      padding: 1rem 0;
      margin-top: 2rem;
    }
    @media (max-width: 600px) {
      header {
        flex-direction: column;
        text-align: center;
      }

      .profile-img {
        margin-top: 15px;
      }
    }
  </style>
