body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
    }

    .btn-group {
      margin: 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }

    .btn-group a button {
      padding: 10px 20px;
      background-color: #545E67;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    /* Popup container */
    .popup {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.5);
      justify-content: center;
      align-items: center;
      z-index: 1000;
      animation: fadeIn 0.3s ease-out forwards;
    }

    /* Popup content */
    .popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 800px;
  display: flex; /* Enables side-by-side layout */
  gap: 20px; /* Adds spacing between image and text */
  align-items: flex-start; /* Aligns image and text at the top */
  position: relative;
}
.popup-content img {
  width: 300px;
  max-width: 100%;
  border-radius: 8px;
}
.popup-text {
  flex: 1;
  text-align: left;
}

    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
     
      color: gray;
      border: none;
      border-radius: 4px;
      padding: 5px 10px;
      cursor: pointer;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes scaleIn {
      from { transform: scale(0.9); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    @media (max-width: 600px) {
      .popup-content {
        flex-direction: column;
        text-align: center;
      }
      .popup img {
        margin: 0 auto;
      }
    }
