.about-us-creative-98a466b1 {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 50px 0;
}
.about-us-creative-98a466b1 .images-wrapper {
    position: relative;
    width: 50%;
    min-height: 400px;
}
.about-us-creative-98a466b1 .image-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-us-creative-98a466b1 .image-front {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    z-index: 2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}
.about-us-creative-98a466b1 .image-front:hover {
    transform: translateY(-10px);
}
.about-us-creative-98a466b1 .image-back img,
.about-us-creative-98a466b1 .image-front img {
    width: 100%;
    height: auto;
    display: block;
}
.about-us-creative-98a466b1 .content-wrapper {
    width: 50%;
}
.about-us-creative-98a466b1 .about-us-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .about-us-creative-98a466b1 {
        flex-direction: column;
    }
    .about-us-creative-98a466b1 .images-wrapper,
    .about-us-creative-98a466b1 .content-wrapper {
        width: 100%;
        min-height: auto;
    }
    .about-us-creative-98a466b1 .image-back,
    .about-us-creative-98a466b1 .image-front {
        position: relative;
        width: 100%;
        margin-bottom: 20px;
    }
}