@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: #f2f4f8;
      color: #333;
      line-height: 1.6;
    }

    .resume {
      display: flex;
      max-width: 900px;
      margin: 40px auto;
      background: white;
      box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }

    .left {
      width: 30%;
      background: #1e2a38;
      color: white;
      padding: 30px 20px;
      text-align: center;
    }

    .left img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
      border: 3px solid #fff;
    }

    .left h2 {
      font-size: 1.5em;
      margin-bottom: 5px;
    }

    .left h4 {
      font-size: 0.95em;
      font-weight: 400;
      opacity: 0.8;
      margin-bottom: 20px;
    }

    .section-title {
      text-align: left;
      font-size: 1.1em;
      margin: 25px 0 10px;
      border-bottom: 1px solid rgba(255,255,255,0.2);
      padding-bottom: 5px;
    }

    .contact p, .skills p {
      font-size: 0.9em;
      margin: 6px 0;
      text-align: left;
    }

    .skills p::before {
      content: "• ";
      color: #00aaff;
    }

    .right {
      width: 70%;
      padding: 40px 50px;
    }

    .right h3 {
      color: #1e2a38;
      font-size: 1.2em;
      margin-bottom: 10px;
      border-bottom: 2px solid #00aaff;
      display: inline-block;
      padding-bottom: 3px;
    }

    .right section {
      margin-bottom: 30px;
    }

    .item {
      margin-bottom: 15px;
    }

    .item h4 {
      font-size: 1em;
      color: #333;
    }

    .item span {
      display: block;
      font-size: 0.9em;
      color: #777;
      margin-bottom: 5px;
    }

    .item p {
      font-size: 0.9em;
      color: #555;
    }

    @media (max-width: 768px) {
      .resume {
        flex-direction: column;
      }
      .left, .right {
        width: 100%;
      }
      .right {
        padding: 25px;
      }
    }