
    .education-section {
      width: 100%;
      max-width: 900px;
      margin: auto;
      padding: 20px;
      font-family: 'Arial', sans-serif;
      color: #333;
    }
  
    .education-section h2 {
      font-size: 28px;
      font-weight: bold;
      position: relative;
      display: inline-block;
      padding-bottom: 5px;
    }
  
    .education-section h2::after {
      content: "";
      display: block;
      width: 50px;
      height: 3px;
      background-color: #007bff;
      margin-top: 5px;
    }
  
    .edu-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px;
      margin-top: 20px;
    }
  
    .edu-item {
      flex: 1;
      min-width: 300px;
      background: #f8f9fa;
      padding: 15px;
      border-left: 4px solid #007bff;
      border-radius: 5px;
      box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
      transition: 0.3s ease-in-out;
    }
  
    .edu-item:hover {
      transform: translateY(-5px);
    }
  
    .edu-title {
      font-size: 1.3em;
      font-weight: bold;
    }
  
    .edu-place {
      font-size: 1.1em;
      color: #007bff;
      margin-top: 5px;
    }
  
    .edu-year {
      font-size: 1em;
      font-style: italic;
      color: #666;
    }
  .interests-section {
    width: 100%;
    max-width: 900px;
    margin: auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
    color: #333;
  }

  .interests-section h2 {
    font-size: 28px;
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
  }

  .interests-section h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: #007bff;
    margin-top: 5px;
  }

  .interests-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
  }

  .interest-item {
    flex: 1;
    min-width: 250px;
    background: #f8f9fa;
    padding: 15px;
    border-left: 4px solid #007bff;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease-in-out;
  }

  .interest-item:hover {
    transform: translateY(-5px);
  }

  .interest-icon {
    font-size: 24px;
    color: #007bff;
  }

  .interest-text {
    font-size: 1.2em;
    font-weight: bold;
  }