 

    .content-box {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
     /*  background-color: #93f5f5; light peach background */
      background-color: #fbe6d6;  /* light peach background */
      padding: 15px;
      border-radius: 6px;
      max-width: 900px;
      margin: auto;
      gap: 20px;
    }

    .text-section {
      flex: 2;
      color: black;
    }

    .text-section h3 {
      font-size: 16px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .text-section p {
      line-height: 1.6;
      text-align: justify;
    }

    .image-section {
      flex: 0.5;
      text-align: center;
    }

    .image-section img {
      max-width: 150px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    /* Responsive layout for mobile */
    @media (max-width: 768px) {
      .content-box {
        flex-direction: column;
        text-align: center;
      }
      .image-section img {
        margin-top: 15px;
      }

      
    }
  
     /* Popup Background */
    .modal {
      display: none; 
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
    }

    /* Popup Box */
    .modal-content {
      background-color: #fff;
      margin: 5% auto;
      padding: 20px;
      border: 1px solid #888;
      width: 80%;
      max-width: 900px;
      border-radius: 8px;
      overflow-y: auto;
      max-height: 80vh;
    }

    .close {
      color: red;
      float: right;
      font-size: 24px;
      font-weight: bold;
      cursor: pointer;
    }

    .title {
      background-color: #4CAF50;
      color: white;
      padding: 6px 10px;
      font-weight: bold;
      margin-bottom: 10px;
      display: inline-block;
    }

    table {
      border-collapse: collapse;
      width: 100%;
      background-color: #f9f4f0;
    }
    th, td {
      border: 1px solid #333;
      padding: 8px 12px;
      text-align: left;
    }
    th {
      background-color: #d9bfa5;
    }
  



