/* General Program Page Styles */
.program-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.program-header {
  text-align: center;
  margin-bottom: 20px;
}

.program-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.program-header p {
  font-size: 1.1rem;
  color: var(--text-color);
}

.program-image {
  width: 100vw;
  height: 400px;
  object-fit: cover;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .program-header h1 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    margin-bottom: 10px;
  }
  .program-image {
    width: 100vw;
    height: 240px;
    object-fit: cover;
    margin-bottom: 20px;
  }
}

.program-section-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

@media (min-width: 768px) {
  .program-section-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .program-section {
    width: 48%;
  }
}

.program-section h2 {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.program-list {
  list-style: none;
  padding-left: 0;
}

.program-list li {
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.program-list li::before {
  content: "\2192"; /* Right arrow symbol */
  margin-right: 10px;
  color: var(--accent-color);
  font-size: 1.2rem;
}

.program-footer {
  margin-top: 20px;
  text-align: center;
}

.program-footer a {
  display: inline-block;
  padding: 10px 20px;
  color: #ffffff;
  background-color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.program-footer a:hover {
  background-color: var(--accent-color);
}
