.upcoming-institutions {
    background:white;
    padding: 50px 20px;
    text-align: center;
}

.upcoming-institutions .container {
    max-width: 1000px;
    margin: 0 auto;
}

.upcoming-institutions h2 {
    font-size: 2rem;
    color: black;
    margin-bottom: 15px;
}

.intro-text {
    font-size: 1.1rem;
    color: black;
    margin-bottom: 30px;
    text-align: left;
}

.institutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.institution-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.institution-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.institution-card h3 {
    font-size: 1.5rem;
    color: black;
    margin-bottom: 10px;
}

.institution-card p {
    font-size: 1rem;
    color: black;
    text-align: left;
}

.institution-card:hover {
    transform: scale(1.05);
}

.program-title {
    font-size: 1.8rem;
    color: black;
    margin: 30px 0 15px;
}

.program-list {
    list-style-type: none;
    padding: 0;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.program-list li {
    font-size: 1.1rem;
    color: black;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.footer-text {
    font-size: 1rem;
    color: black;
    margin-top: 20px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .institutions-grid {
        grid-template-columns: 1fr;
    }
    .institution-card img {
        height: 150px;
    }
    .program-list li {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .upcoming-institutions {
        padding: 30px 15px;
    }
    .upcoming-institutions h2 {
        font-size: 1.6rem;
    }
    .institution-card img {
        height: 140px;
    }
    .program-list li {
        font-size: 0.95rem;
    }
}


.potential-programs {
    background: white;
    padding: 50px 20px;
    text-align: center;
}

.potential-programs .container {
    max-width: 1000px;
    margin: 0 auto;
}

.potential-programs h2 {
    font-size: 2rem;
    color: black;
    margin-bottom: 30px;
}

.program {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    text-align: left;
}

.program .text {
    flex: 1;
}

.program h3 {
    font-size: 1.5rem;
    color: black;
    margin-bottom: 10px;
}

.program p {
    font-size: 1rem;
    color: black;
    line-height: 1.6;
    text-align: justify;
}

.program .image {
    flex: 1;
    text-align: center;
}

.program img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Reverse Layout for Alternating Images */
.program.reverse {
    flex-direction: row-reverse;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .program, .program.reverse {
        flex-direction: column;
        text-align: center;
    }
    .program .image {
        margin-top: 15px;
    }
}
