
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f0f4f8;
      color: #333;
    }

    .main-wrapper {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 30px;
      padding: 50px 20px ;
      flex-wrap: wrap;
    }

    .container {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      border: 2px solid #ccc;
      border-radius: 10px;
      padding: 20px;
      width: 80%;
      background: #ffffff;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
      margin-left:120px;
    }

    .info-box {
      flex: 1;
    }

    .info-box h1 {
      color: #003366;
      margin-bottom: 10px;
    }

    .info-box a {
      color: #0b63c7;
      text-decoration: none;
    }

    .info-box a:hover {
      text-decoration: underline;
    }

    .photo-box {
      margin-left: 20px;
    }

    .photo-box img {
      width: 180px;
      height: auto;
      border-radius: 10px;
      border: 5px solid #ccc;
      box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }

    h2 {
      color: #006699;
      margin-top: 30px;
    }

    hr {
      border: none;
      border-top: 2px solid #006699;
      margin: 40px 0 20px 0;
    }

    .section, .project {
      background-color: #ffffff;
      border: 2px solid #ccc;
      box-shadow: 15px 15px 15px rgba(75, 9, 241, 0.1);
      padding: 20px;
      margin: 20px auto;
      border-radius: 8px;
      width: 80%;
    }

    ul {
      padding-left: 20px;
    }

    ul li {
      margin-bottom: 8px;
    }

    .job-title {
      font-weight: bold;
    }
