.programs > .container > *{
    display: none;

}
/* Main Flex Container */
.content-row {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

/* Each Column */
.content-col {
  flex: 1 1 45%;
}

/* Image Styling */
.img-container {
  width: 100%;
  max-width: 100%;
}

.img-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Text Styling */
.context h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.context p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* Button Styling */
.btn a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .content-row {
    flex-direction: column;
  }
}
