.about-hero .image-wrapper {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
    margin-top: -75px;
}

.about-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-title-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 3.5rem;
    font-weight: bold;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    font-family: "IBM Plex Serif", serif;
    text-align: center;
    white-space: nowrap;
}

.about-block-1,
.about-block-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin: 80px auto;
    max-width: 1200px;
    padding: 0 20px;
    flex-wrap: wrap;
}

/* Block 1: text left, image right */
.about-text-1 {
    flex: 1;
    font-family: "IBM Plex Serif", serif;
}

.about-text-1 h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #0a3a44;
}

.about-text-1 p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.about-image-1 {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-1 img {
    width: 500px;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Block 2: image left, text right */
.about-image-2 {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-2 img {
    width: 500px;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.about-text-2 {
    flex: 1;
    font-family: "IBM Plex Serif", serif;
}

.about-text-2 h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #0a3a44;
}

.about-text-2 p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}
