/* About Features Styling */
.about-features-area {
    padding: 120px 0;
    background-color: #fff;
}

.about-feature-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

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

.about-feature-row.reverse {
    flex-direction: row-reverse;
}

.about-feature-content {
    flex: 1;
}

.about-feature-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 400px;
    /* Fixed height to match reference */
}

.about-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensure image covers the area */
    display: block;
    transition: transform 0.5s ease;
}

.about-feature-image:hover img {
    transform: scale(1.03);
}

.feature-tag {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    display: block;
    font-family: var(--font_dmsans);
}

.feature-title {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
    line-height: 1.2;
}

.feature-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 0;
    font-family: var(--font_dmsans);
    /* Explicit body font */
}

@media only screen and (max-width: 991px) {
    .about-feature-row {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
    }

    .about-feature-row.reverse {
        flex-direction: column;
    }

    .feature-title {
        font-size: 32px;
    }

    .about-features-area {
        padding: 80px 0;
    }
}

@media only screen and (max-width: 767px) {
    .about-features-area {
        padding: 50px 0 !important;
        background-color: #ffffff !important;
    }

    .about-feature-row {
        gap: 30px !important;
        margin-bottom: 60px !important;
    }

    .feature-tag {
        font-size: 12px !important;
        margin-bottom: 12px !important;
        letter-spacing: 1.5px !important;
    }

    .feature-title {
        font-size: 28px !important;
        margin-bottom: 15px !important;
        line-height: 1.3 !important;
    }

    .feature-desc {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    .feature-btn {
        margin-top: 30px !important;
    }

    .about-feature-image {
        height: 250px !important;
        border-radius: 12px !important;
    }

    .wc-btn-pill-icon-right {
        padding: 12px 25px !important;
        font-size: 14px !important;
    }
}