.elementor-24 .elementor-element.elementor-element-48588ca{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Source Sans Pro;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}@media(max-width:1024px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}@media(max-width:767px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}/* Start custom CSS for container, class: .elementor-element-48588ca */:root {
        --features-bg-light: #5bc5f4;
        --features-bg-dark: #32a1ec;
        --features-dot-color: rgba(255, 255, 255, 0.1);
        --features-white: #ffffff;
        --features-card-bg: #ffffff;
        --features-text-dark: #2c3e50;
        --features-active-bg: #008fcf;
        --features-cta-bg: rgba(255, 255, 255, 0.2);
        --features-cta-hover-bg: rgba(255, 255, 255, 0.35);
        --features-icon-blue: #00a2ff;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .features-cta-section {
        font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        padding: 4rem 2rem;
        background-color: var(--features-bg-dark);
        background-image:
            radial-gradient(var(--features-dot-color) 1px, transparent 1px),
            linear-gradient(to bottom right, var(--features-bg-light), var(--features-bg-dark));
        background-size: 15px 15px, 100% 100%;
        text-align: center;
    }

    .features-cta-heading {
        font-size: 36px;
        font-weight: 700;
        color: var(--features-white);
        line-height: 1.4;
        margin-bottom: 3rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .features-grid {
        display: flex; /* Keep as flexbox for single row */
        justify-content: center;
        align-items: stretch;
        /* flex-wrap: wrap; <-- REMOVED this */
        gap: 1.5rem;
        margin-bottom: 3rem;
        /* max-width: 950px; <-- REMOVED this to allow single line */
        margin-left: auto;
        margin-right: auto;
    }

    .feature-card {
        background-color: var(--features-card-bg);
        color: var(--features-text-dark);
        border-radius: 12px;
        padding: 1.5rem 1rem;
        text-align: center;
        text-decoration: none;
        width: 140px;
        height: auto;
        min-height: 140px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
        flex-shrink: 0; /* Prevent cards from shrinking */
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .feature-card svg {
        width: 48px;
        height: 48px;
        color: var(--features-icon-blue);
        margin-bottom: 0.75rem;
        transition: color 0.2s ease;
    }

    .feature-card h4 {
        font-size: 14px;
        font-weight: 700;
        line-height: 1.3;
    }

    .feature-card.is-active {
        background-color: var(--features-active-bg);
        color: var(--features-white);
    }
    .feature-card.is-active svg {
        color: var(--features-white);
    }
    .feature-card.is-active:hover {
         transform: translateY(0);
         box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .features-cta-button {
        display: inline-block;
        background-color: var(--features-cta-bg);
        color: var(--features-white);
        padding: 12px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 700;
        font-size: 16px;
        transition: background-color 0.3s ease;
        border: none;
    }

    .features-cta-button:hover {
        background-color: var(--features-cta-hover-bg);
    }

    /* --- UPDATED MOBILE LAYOUT --- */
    @media (max-width: 992px) { /* Adjust breakpoint if cards wrap too early */
         .features-grid {
             flex-wrap: wrap; /* Allow wrapping only on medium screens if needed */
         }
    }

    @media (max-width: 768px) {
        .features-cta-heading {
            font-size: 30px;
        }
        .features-grid {
            display: grid; /* Switch to grid */
            grid-template-columns: 1fr 1fr; /* 2 columns */
            gap: 1rem;
            max-width: 400px; /* Constrain width for centering */
        }
        .feature-card {
            width: auto; /* Let grid control width */
            min-height: 130px;
            padding: 1.5rem 0.5rem;
        }
        .feature-card svg {
            width: 40px;
            height: 40px;
            margin-bottom: 0.5rem;
        }
        .feature-card h4 {
            font-size: 13px;
        }
    }
     @media (max-width: 400px) {
         .features-grid {
             max-width: none;
         }
          .feature-card {
             min-height: 120px;
         }
          .feature-card svg {
             width: 36px;
             height: 36px;
         }
     }/* End custom CSS */