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

.features-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.features-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    color: #000;
    text-align: center;
    margin: 0;
}

.features-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 60px;
}

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

.feature-block {
    margin-bottom: 25px;
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.check-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    color: #E88597;
}

.feature-heading {
    font-size: 24px;
    font-weight: 800;
    color: #000;
    margin: 0;
}

.feature-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 10px;
    padding-left: 34px;
}

.features-media {
    width: 50%;
    display: flex;
}

.features-gif {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

@media (max-width: 900px) {
    .features-section {
        padding: 0 15px 20px;
    }

    .features-container {
        gap: 40px;
    }

    .features-row {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .features-title {
        font-size: 24px;
    }

    .features-content {
        width: 100%;
    }

    .features-media {
        width: 100%;
    }

    .features-gif {
        height: auto;
    }

    .feature-text {
        padding-left: 0;
        font-size: 16px;
    }

    .feature-heading {
        font-size: 20px;
    }
}