/* programs.css */



/* Container Styling */
.container {
  max-width: 960px;
  margin: auto;
  padding: 20px;
}

/* Headings */
.container h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.container h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #444;
}

.container p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

/* Card Styling */
.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.card-body h4 {
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 10px;
}

.card-body p {
  color: #555;
}

.card-body ul {
  padding-left: 1.2rem;
}

.card-body li {
  margin-bottom: 6px;
  color: #444;
}

/* CTA Section */
.text-center.my-5 h3 {
  font-size: 2rem;
  color: #000;
  margin-bottom: 0.75rem;
}

.text-center.my-5 p {
  color: #444;
  font-size: 1.1rem;
}

.btn-primary {
  background-color: #d91ba3;
  border: none;
  text-decoration: none;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
  .container h2 {
    font-size: 2rem;
  }

  .card-body h4 {
    font-size: 1.3rem;
  }

  .text-center.my-5 h3 {
    font-size: 1.5rem;
  }
}
