﻿/* Features section for Sales theme */
.sales-features-section {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 1.5rem auto;
    padding: 2.6rem 1.5rem 2.6rem 1.5rem;
    border-radius: 32px;
    background: linear-gradient(115deg, var(--section-bg-1, #f7fafb) 70%, var(--section-bg-2, #e5f4e9) 100%);
    box-shadow: 0 10px 48px 0 var(--accent-shadow, rgba(86,192,69,0.06)), 0 1.5px 3px 0 rgba(0,0,0,0.03);
    position: relative;
    /* Remove display:flex and gap here—move it to .sales-features-columns */
}

/* NEW: Columns wrapper for content layout */
.sales-features-columns {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
    align-items: flex-start;
}

.sales-features-list-wrapper {
    flex: 1 1 350px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Right column: image and title stacked */
.sales-features-image-block {
    flex: 1 1 400px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Retain your image wrapper style */
.sales-features-image-wrapper {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.sales-features-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 1.25rem;
    box-shadow: 0 6px 40px rgba(50,60,110,0.13);
    background: #f5f7fb;
}

.sales-features-title {
    font-size: 2rem;
    font-weight: 700;
    color: #173466;
    margin-bottom: 0;
    margin-top: 0.6rem;
    text-align: center;
}

/* List styling */
.sales-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sales-feature-item {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    padding-left: 1.8em;
    position: relative;
    color: #232A37;
}

    .sales-feature-item:before {
        content: "";
        display: inline-block;
        position: absolute;
        left: 0;
        top: 0.45em;
        width: 1em;
        height: 1em;
        background-size: contain;
    }

/* Responsive styles */
@media (max-width: 800px) {
    .sales-features-section {
        padding: 1.5rem 0.8rem 1.8rem 0.8rem;
        max-width: 100vw;
    }

    .sales-features-columns {
        flex-direction: column;
        gap: 2rem;
    }

    .sales-features-title {
        font-size: 1.25rem;
        margin-top: 0.5rem;
    }

    .sales-features-list-wrapper,
    .sales-features-image-block {
        min-width: 0;
        width: 100%;
    }
}
