body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f9f9f9;
      color: #333;
      line-height: 1.6;
    }

    .container {
      max-width: 900px;
      margin: 20px auto;
      background: #fff;
      padding: 30px;
      box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
      border-radius: 10px;
    }

    /* Header */
    .header {
      text-align: center;
      border-bottom: 2px solid #444;
      padding-bottom: 15px;
    }
    .header h1 {
      margin: 0;
      font-size: 28px;
      color: #222;
    }
    .header p {
      margin: 5px 0;
    }
    .links a {
      color: #0066cc;
      text-decoration: none;
      margin: 0 8px;
    }

    /* Section */
    .section-title {
      font-size: 20px;
      font-weight: bold;
      margin-top: 25px;
      margin-bottom: 10px;
      border-left: 4px solid #444;
      padding-left: 10px;
      color: #222;
    }

    /* Education Table */
    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 10px;
      background: #fff;
    }
    th, td {
      padding: 12px 15px;
      text-align: left;
      border-bottom: 1px solid #ddd;
    }
    th {
      background-color: #444;
      color: white;
      text-transform: uppercase;
      font-size: 14px;
    }
    tr:hover {
      background-color: #f1f1f1;
    }
    .highlight {
      font-weight: bold;
      color: #222;
    }

    /* Lists */
    ul {
      margin: 5px 0 15px 20px;
    }

    /* Skills */
    .skills-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
    .skills-grid div {
      background: #f1f1f1;
      padding: 8px;
      border-radius: 5px;
    }
