
* {
 box-sizing: border-box;
 font-family: 'Poppins', sans-serif;
}

body {
 background-color: #b1e4ec;
 margin: 0;
 padding-top: 0px;
}
.section-title {
 text-align: center;
 margin-bottom: 3rem;
}

.section-title h2 {
 font-size: 2.75rem;
 font-weight: 700;
 color: #2c3e50;
}

.section-title p {
 font-size: 1.1rem;
 color: #6c757d;
 max-width: 600px;
 margin: 0 auto;
}

.program-card {
 border: none;
 border-radius: 20px;
 box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
 transition: transform 0.3s ease, box-shadow 0.3s ease;
 overflow: hidden;
 background: #fff;
}

.program-card:hover {
 transform: translateY(-8px);
 box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.program-card .card-body {
 padding: 2rem;
}

.program-title {
 font-size: 1.4rem;
 font-weight: 600;
 color: #005792;
}

.program-info p {
 font-size: 0.95rem;
 margin-bottom: 0.5rem;
 color: #444;
}

.program-info i {
 color: #0d6efd;
 margin-right: 0.5rem;
}

.btn-apply {
 font-weight: 600;
 border-radius: 50px;
 transition: all 0.3s ease;
}

.btn-apply.btn-outline-primary:hover {
 background-color: #0d6efd;
 color: #fff;
 border-color: #0d6efd;
}

.btn-apply.btn-primary {
 background-color: #005792;
 border: none;
}

.btn-apply.btn-primary:hover {
 background-color: #004174;
}
