<style>
  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    top: 0;
    width: 100%;
    height: auto;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.4); /* Black with transparency */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    padding: 0 0px;

  }

  /* Modal Content Styling */
  .modal-content {
    background-color: transparent;
    justify-content: center;
    Align-items: center;
    top: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    padding: 0px 20px;
    width: 100%;
    border-radius: 10px;
    position: relative;
  }

  /* Close button for modal (popup) */
  .close-btn {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 0px;
    right: 25px;
    cursor: pointer;
    display: none;
  }

  .close-btn:hover,
  .close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  /* Title Styling */
  .module-title div {
    margin-top: 10px;
    margin-left: 0px;
    padding-bottom: 10px;
  }

  /* Two-column layout */
  .two-column-layout {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    margin: 0px;
  }

  .left-column {
    flex: 2;
    align-items: center; /* Center vertically */
  justify-content: center; /* Horizontal alignment (optional) */
  align-items: center; /* Vertical alignment */

  }

  .right-column {
    flex: 1;
    display: flex;
    justify-content: left;
  }

  /* Toggle Section */
  .toggle-section {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 1px;
    left: 10px;
    bottom: 10px;
  }

  .toggle-btn {
    width: 25px; !important;
    height: 25px; !important;
    background-color: #E85A45; !important;
    color: black; !important;
    border: none; !important;
    border-radius: 10px; !important;
    font-size: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0px;
    transition: width 0.3s, height 0.3s;
    border-color: none;
    left: 0px;
    bottom: 0px;
    margin-bottom: 10px;
    margin-top: 10px;
  }

  .toggle-btn .arrow {
    position: absolute;
    transition: opacity 0.3s ease;
    font-weight: bold;
    color: black;
  }

  .toggle-btn .learn-more {
    display: none;
    position: absolute;
    top: 50%;
    left: 37%;
    transform: translateY(-100%);
    font-size: 10px;
    white-space: nowrap;
    border-color: none;
     align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
  text-align: center; /* Text alignment */
  }

  .toggle-btn:hover {
    width: 130px; /* Expand width on hover */
  }

  .toggle-btn:hover .arrow {
    position: absolute;
    left: 0;
    transition: left 0.3s;
    color: black;
  }

  .toggle-btn:hover .learn-more {
    display: block;
    opacity: 1;
    transform: translateY(-50%) translateX(-10px); /* Slide in from left */
    color: black;
  }

  .toggle-btn:hover {
    background-color: #E85A45;
  }

  .toggle-btn:active {
    background-color: #E85A45;
  }

  .toggle-btn:hover .arrow {
    left: 10px; /* Arrow remains at the left side */
    opacity: 1;
    color: black;
  }
button:focus, 
button:active {
  outline: none; /* Removes the focus outline */
  border: none; /* Ensures no border is added */
  box-shadow: none; /* Removes any focus or active shadow effect */
}

button {
  background-color: #0C2045; /* Same background color */
  color: #fff; /* Text color */
  border: none; /* Removes default border */
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px; /* Rounded corners */
  transition: background-color 0.3s ease; /* Smooth hover effect */
}

button:hover {
  background-color: #1A3C78; /* Slightly darker color on hover */
}

  /* Card Layout */
  .module-card {
    margin-bottom: 20px; /* Add spacing below each card */
    display: flex;
    flex-direction: column;
    gap: 10px; /* Add gap between card sections */
    background-color: #ebf4fe; /* Each card has its own background color */
    padding: 30px;/* Padding inside the card */
    border-radius: 10px; /* Rounded corners */
  }

  /* Card Background & Border */
  .module-card {
    border-radius: 10px; /* Rounded corners */
  }

  /* Transparent Gap Between Cards */
  .module-card + .module-card {
    margin-top: 20px; /* Ensure gap between cards is transparent */
  }

  /* Responsive Styles */
  @media (max-width: 768px) {
    .two-column-layout {
      flex-direction: column; /* Stack columns vertically */
      gap: 10px;
    }

    .left-column, .right-column {
      flex: none;
      width: 100%; /* Full width for both columns */
    }

    .right-column img {
      width: 100%; /* Scale image to fit the container */
      max-width: 100%; /* Prevent overflow */
      height: auto; /* Maintain aspect ratio */
    }

    .modal-content {
      width: 100%;
    }

    .close-btn {
      top: 5px;
      right: 10px;
    }
  }
.modal-body {
  display: flex;
  flex-direction: column; /* Stack elements vertically */
  gap: 0px; /* Add spacing between subheading and columns */
}

.modal-subheading {
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 20px; /* Space below subheading */
}

.modal-two-column-layout {
  display: flex;
  flex-direction: row; /* Place columns side by side */
  gap: 30px;
}

.modal-two-column-layout .left-column {
  flex: 1;
  text-align: left;
}

.modal-two-column-layout .right-column {
  flex: 1;
  display: flex;
  flex-direction: column; /* Arrange items vertically */
  align-items: flex-start; /* Attach to the top */
  margin: 0;
  padding: 0;
}

.additional-info {
  margin-top: 10px;
  color: #333; /* Adjust as needed */
}

@media (max-width: 768px) {
  .modal-two-column-layout {
    flex-direction: column; /* Stack columns vertically on smaller screens */
  }

  .modal-two-column-layout .left-column, 
  .modal-two-column-layout .right-column {
    flex: none;
    width: 100%;
  }
  /* Additional text styling below the two columns in the modal */
.additional-text-row {
  left: 0px;
  margin: 0;
  padding: 0;
}