/* ============================================
   Programs Page - Specific Styles Only
   Shared styles are in All.css
   ============================================ */

/* Programs Page Specific Body Class */
body.programs-page {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Navigation adjustment for programs page - ensure proper positioning */
body.programs-page .navigation {
  position: relative;
  left: auto;
  top: 0;
  width: 90%;
  max-width: 640px;
  margin: 0 auto;
  z-index: 2;
}

/* Programs Section Container - Grid Layout */
#services .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 20px 0;
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
}

/* Programs Section Styles */
#services .program {
  background: #fff;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#services .program:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

#services .program h3 {
  font-size: 1.5rem;
  color: var(--primary-color, #004aad);
  margin-bottom: 15px;
  font-weight: 600;
}

#services .program p {
  font-size: 1rem;
  color: var(--text-muted, #666);
  line-height: 1.8;
  margin: 0;
}

/* Responsive Programs Grid */
@media (max-width: 768px) {
  #services .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  #services .program {
    padding: 20px;
  }
  
  #services .program h3 {
    font-size: 1.3rem;
  }
}
