.story-section {
    width: 100%;
    padding: 10px 15px 40px;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.story-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 60px;
}

.story-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
}

.story-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
    line-height: 1.2;
}

.story-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 15px;
}

.story-text p:last-child {
    margin-bottom: 0;
}

.story-image-wrapper {
    width: 50%;
    display: flex;
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

@media (max-width: 900px) {
    .story-container {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .story-content {
        width: 100%;
    }

    .story-title {
        text-align: center;
        font-size: 24px;
        margin: 0;
    }

    .story-image-wrapper {
        width: 100%;
        display: block;
    }

    .story-img {
        height: auto;
    }
}