body {
    font-family: Arial, sans-serif;
    color: #333;
}

/* Header Section */
.header-section {
    background-color: #125a42;
    color: white;
    padding: 50px 0;
}

    .header-section h1 {
        font-size: 3.5rem;
        font-weight: bold;
    }

    .header-section p {
        font-size: 1.3rem;
        margin-top: 10px;
    }

/* Program Section */
.program-section {
    padding: 50px 0;
}

.program-title {
    font-size: 2.5rem;
    color: #125a42;
    font-weight: bold;
    margin-bottom: 40px;
}

/* Card Styles */
.card {
    border: none;
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

.card-title {
    color: #125a42;
    font-weight: bold;
    font-size: 1.5rem;
}

.card-body {
    background-color: #f8f9fa;
    padding: 20px;
}

/* Program Description */
.program-description {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0;
}

/* Footer Section */
.footer-section {
    background-color: #125a42;
    color: white;
    padding: 20px;
    text-align: center;
}

@media screen and (max-width:768px){
    .services-title h3,p{
        text-align:center;
    }
}