.priority-section {
    margin-bottom: 60px;
    display: flex;
    gap: 40px;
    align-items: center;
}
.priority-section-image {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
}
.priority-section-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}
#healthcare {
    align-items: stretch;
}
#healthcare .priority-section-image {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    min-height: 100%;
    padding: 15% 0;
}
#healthcare .priority-section-image img {
    height: 200px;
    width: 200px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 8px;
}
.healthcare-img-aging-mobile {
    display: none;
}
.priority-section-content {
    flex: 1;
}
.priority-section h2 {
    margin-bottom: 20px;
    color: #0e4c9a;
    font-weight: bold;
}
.priority-section-combined h2 {
    margin-bottom: 20px;
    color: #0e4c9a;
    font-weight: bold;
}
.priority-section ul {
    list-style-type: disc;
    padding-left: 20px;
}
.priority-section-combined {
    margin-bottom: 60px;
    display: flex;
    gap: 40px;
    align-items: center;
}
.priority-section-combined-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}
@media (max-width: 768px) {
    .priority-section {
        flex-direction: column-reverse;
        align-items: center;
    }
    .priority-section-image {
        width: 200px;
        height: 200px;
        margin-top: 30px;
    }
    .priority-section-content {
        width: 100%;
    }
    #healthcare {
        align-items: center;
    }
    #healthcare .priority-section-image {
        flex-direction: column;
        width: 200px;
        height: auto;
        padding: 0;
        gap: 8px;
        margin: 30px auto 0;
    }
    #healthcare .priority-section-image img {
        width: 200px;
        height: 200px;
    }
    #healthcare .priority-section-image img.healthcare-img-aging-desktop {
        display: none;
    }
    .healthcare-img-aging-mobile {
        display: block;
        width: 200px;
        height: 200px;
        object-fit: cover;
        border-radius: 8px;
        margin: 20px auto;
    }
    .priority-section-combined {
        flex-direction: column-reverse;
        align-items: center;
    }
    .priority-section-combined-content {
        width: 100%;
        gap: 30px;
    }
}
