/* Force Full-Width Background Breakout for Astra Theme */
.wcus-section {
    position: relative;
    width: 100vw !important;
    max-width: 100vw !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    padding: 80px 20px !important;
    box-sizing: border-box !important;
    clear: both;
}

/* Inner Container - Keeps your headings, text, and graphics safely centered */
.wcus-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.wcus-header {
    margin-bottom: 50px;
}

.wcus-title {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px 0;
}

.wcus-subtitle {
    font-size: 18px;
    color: #4b5563;
    margin: 0;
}

.wcus-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

/* Default Order: Left = Features, Right = Image */
.wcus-left-column {
    flex: 1;
    min-width: 300px;
    order: 1;
}

.wcus-right-column {
    flex: 1;
    min-width: 300px;
    text-align: center;
    order: 2;
}

/* Swapped Order Checkbox Active: Image moves to Left, Features to Right */
.wcus-section.wcus-swap-layout .wcus-left-column {
    order: 2;
}

.wcus-section.wcus-swap-layout .wcus-right-column {
    order: 1;
}

.wcus-hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.wcus-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

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

.wcus-icon-wrap {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wcus-icon-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.wcus-content-wrap h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px 0;
}

.wcus-content-wrap p {
    Ffont-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .wcus-grid {
        flex-direction: column-reverse;
    }
}