.diploma-section {
    background: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0a1f44;
    margin-bottom: 40px;
}

.diploma-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.diploma-card {
    background: #f3f3f3;
    border: 2px solid #ccc;
    border-radius: 25px;
    padding: 40px 20px;
    width: 320px;
    transition: 0.3s ease;
}

.diploma-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.diploma-card h3 {
    font-size: 22px;
    color: #1a2f6c;
    margin-bottom: 30px;
    line-height: 1.4;
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn {
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.btn.apply {
    background: #ff6a2a;
    color: #fff;
}

.btn.learn {
    background: #1e2f6f;
    color: #fff;
}

.btn:hover {
    opacity: 0.9;
}
