
  body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
      background: #f9f9f9;
    }

    .profile-container {
      display: flex;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 40px auto;
      background: linear-gradient(to right, #ffffff, #ffeaea);
      box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
      border-radius: 10px;
      overflow: hidden;
      animation: fadeIn 1s ease-in-out;
    }

    .profile-left {
      width: 100%;
      max-width: 300px;
      background: white;
      text-align: center;
      padding: 30px 20px;
      border-right: 2px solid #ff0000;
    }

    .profile-left img {
      width: 100%;
      max-width: 220px;
      height: 220px;
      border-radius: 12px;
      object-fit: fill;
      box-shadow: 0 0 15px rgba(255, 36, 0, 0.2);
    }

    .profile-left h2 {
      color: #d10000;
      margin: 20px 0 5px;
      font-size: 1.4rem;
      border-bottom: 5px double #d10000;
    }

    .profile-left p {
      color: #555;
      font-size: 1rem;
    }

    .profile-right {
      flex: 1;
      padding: 30px 40px;
      background-color: #fffdfd;
    }

    .section {
      margin-bottom: 30px;
    }

    .section h3 {
      position: relative;
      margin-bottom: 15px;
      color: #d10000;
      font-size: 1.2rem;
    }

    .section h3::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -5px;
      width: 60px;
      height: 3px;
      background: #ff0000;
      border-radius: 5px;
    }

    .section p {
      color: #333;
      line-height: 1.6;
      text-align: justify;
    }

    .section table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 10px;
      box-shadow: 0 0 8px rgba(255, 0, 0, 0.1);
    }
    
    .section th, td {
      padding: 10px 5px;
      border: 1px solid #ffcccc;
      text-align: left;
    }

    .section  th {
      background-color: #ffe6e6;
      color: #d10000;
    }

     .section tr:nth-child(even) {
      background-color: #fffafa;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
