.section-2 {
    min-height: 340px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,98,77,0.10);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2.5rem auto 1.5rem auto;
    max-width: 900px;
    padding: 2rem 1.5rem;
}
.section-2-container {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: 100%;
    overflow: visible;
    justify-content: space-between;;
}
.section-2-container img {
    display: block;
    max-width: 220px;
    max-height: 320px;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,98,77,0.08);
    margin: 0 2rem 0 0;
}
.staff-info {
    margin-top: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}
.section-2-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
    letter-spacing: 0.01em;
}
.section-2-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color-darker);
    margin-bottom: 0.5rem;
}
.section-3 {
    height: auto;
    background: var(--apple);
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0,98,77,0.07);
    margin: 0 auto 2.5rem auto;
    max-width: 900px;
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
}
.section-3-container {
    width: 100%;
    margin: 0 auto;
}
.section-3-details {
    font-size: 1.13rem;
    color: var(--primary-color-darker);
    line-height: 1.7;
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    background: none;
}
@media only screen and (max-width:900px) {
    .section-2 {
        flex-direction: column;
        align-items: center;
        padding: 1.2rem 0.5rem;
        min-height: 0;
    }
    .section-2-container {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
        width: 100%;
        padding: 0;
    }
    .section-2-container img {
        margin: 0 auto 1rem auto;
        max-width: 80vw;
        max-height: 300px;
    }
    .staff-info {
        margin-top: 0;
        padding-left: 0;
        align-items: center;
        text-align: center;
    }
    .section-2-name {
        font-size: 1.2rem;
    }
    .section-3 {
        max-width: 98vw;
        padding: 1.2rem 0.5rem;
    }
    .section-3-container {
        width: 100%;
    }
}