.program-experience-section {
    position: relative;
    margin-bottom: 80px;
    padding: 50px 0;
    background-color: rgba(32, 72, 34, 0.07);
}

.program-experience-header {
    text-align: center;
    max-width: 1084px;
    margin-left: auto;
    margin-right: auto;
}

.program-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
}

.program-card {
    padding: 24px;
    color: var(--white);
    background-color: #395C3A;
    border-radius: 20px;
}

.program-card p {
    color: rgba(255, 255, 255, 0.8);
}

.program-card h4 {
    margin-bottom: 9px;
}

.therapeutic-section+.program-experience-section,
.content-section+.program-experience-section.show-leaf {
    margin-bottom: 0;
}

.leaf-wrapper {
    display: none;
}

.program-experience-img {
    width: 100%;
    height: 309px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 37px;
    margin-top: -26px;
}

.program-experience-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 71%;
}

.program-icon {
    width: 60px;
    height: 60px;
    background-color: #FFFFFF1A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin-bottom: 13px;
}

@media (min-width: 1024px) {
    .program-experience-section.show-leaf .leaf-wrapper {
        position: absolute;
        right: 0;
        bottom: 35px;
        display: block;
        z-index: -1;
        width: 165px;
    }
}

@media (max-width: 991px) {
    .program-experience-section {
        margin-bottom: 60px;
    }
    .program-wrapper {
        gap: 20px;
    }
    .program-card {
        padding: 20px;
        border-radius: 15px;
    }
    .program-experience-img {
        border-radius: 15px;
        overflow: hidden;
        margin-bottom: 25px;
        margin-top: 0;
    }
    .program-icon {
        width: 50px;
        height: 50px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .program-experience-section {
        margin-bottom: 40px;
        padding: 40px 0;
    }
    .program-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .program-card {
        padding: 15px;
        border-radius: 10px;
    }
    .program-experience-img {
        border-radius: 10px;
        margin-bottom: 20px;
        height: 200px;
    }
    .program-icon {
        width: 45px;
        height: 45px;
        padding: 12px;
        margin-bottom: 10px;
    }
}