  body {
      font-family: Arial, sans-serif;
      background-color: #f0f2f5;
      display: flex;
      justify-content: center;
      padding: 40px;
    }
    .container {
      background-color: #fff;
      width: 600px;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
    .profile {
      text-align: center;
    }
    .profile img {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      margin-bottom: 10px;
    }
    .profile h2 {
      margin: 5px 0;
    }
    .profile p {
      color: #555;
      font-size: 14px;
    }
    h3 {
      margin-top: 25px;
      margin-bottom: 10px;
      border-bottom: 1px solid #ccc;
      padding-bottom: 5px;
    }
    .skill-list {
      margin-top: 10px;
    }
    .skill {
      display: inline-block;
      background-color: #e9f0fb;
      color: #1877f2;
      padding: 6px 14px;
      margin: 5px;
      border-radius: 20px;
      font-weight: bold;
      font-size: 14px;
    }
    button {
      background-color: #1877f2;
      color: white;
      padding: 8px 18px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 12px;
      font-size: 14px;
    }
    button:hover {
      background-color: #0f5ec9;
    }
    .experience input, .experience textarea {
      width: 100%;
      margin: 5px 0;
      padding: 6px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 14px;
    }
    .experience textarea {
      height: 60px;
      resize: none;
    }
    .experience p {
      margin: 8px 0;
      font-size: 14px;
    }
    .experience strong {
      display: block;
      font-size: 15px;
    }
    .education p {
      font-size: 14px;
      margin: 5px 0;
    }