.programs-container {
  padding: 60px 20px;
  background: #f5fff7;
  max-width: 1200px;
  margin-top: 100px;
  margin-left: 150px;
  margin-right: 100px;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  color: #2c2c5d;
  margin-bottom: 40px;
  font-weight: 700;
}

.program-box {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.program-box:hover {
  transform: translateY(-5px);
}

.program-box img {
  margin-left: 10px;
  width: 40%;
  height: 40%;
  border-radius: 20px;
  object-fit: cover;
}

.program-text {
  padding: 30px;
  text-align: left;
}

.program-text h3 {
  font-size: 1.6rem;
  color: #1380cf;
  margin-bottom: 10px;
}

.program-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .programs-container {
    margin: auto;
  }
  .program-box {
    flex-direction: column;
    margin-left: 0px;
  }

  .program-box img {
    width: 100%;
    height: auto;
  }

  .program-text {
    padding: 20px;
    text-align: left;
  }
}
