
    /* Modern, Mobile-First, SEO-Friendly CSS */
    :root {
        --rcs-blue: rgb(3, 16, 169);
        --rcs-red: rgb(255, 0, 0);
        --text-dark: #222222;
        --text-light: #555555;
        --bg-light: #f9f9f9;
        --border-color: #e0e0e0;
    }
    
    /* ---------------------------------------------------
       STRICT MOBILE WIDTH ENFORCEMENT
       Guarantees nothing blows out the side of the screen
    --------------------------------------------------- */
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    * {
        box-sizing: border-box;
    }
    
    .kpcontrol-container {
        max-width: 1400px; 
        margin: 0 auto;
        padding: 40px 20px;
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        color: var(--text-dark);
        font-size: 1.15rem; 
        line-height: 1.7;
    }

   .kpcontrol-section {
        display: flex;
        flex-wrap: wrap;
        gap: 30px 50px; 
        margin-bottom: 60px; 
        align-items: center;
        background: transparent !important; 
    }

    .kpcontrol-section.reverse {
        flex-direction: row-reverse;
    }

    .text-content {
        flex: 1 1 min(100%, 450px);
    }

    .image-content {
        flex: 1 1 min(100%, 400px);
        text-align: center;
        max-width: 100%; 
    }

    .image-content img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        filter: drop-shadow(0px 15px 25px rgba(0,0,0,0.08));
    }

    h2, h3 {
        color: var(--rcs-blue);
        margin-top: 0;
        margin-bottom: 25px;
        line-height: 1.3;
    }

    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.5rem; color: var(--text-dark); }
    
    p { margin-bottom: 1.5rem; }

    .brand-blue { color: var(--rcs-blue); font-style: italic; font-weight: bold; }
    .brand-red { color: var(--rcs-red); font-style: italic; font-weight: bold; }

    /* Modern CSS Buttons */
    .btn-group {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 25px;
    }

    .btn {
        display: inline-block;
        padding: 14px 28px;
        font-size: 1.1rem;
        font-weight: 600;
        text-align: center;
        text-decoration: none;
        border-radius: 6px;
        transition: all 0.3s ease;
        cursor: pointer;
        border: 2px solid transparent;
    }

    .btn-primary {
        background-color: var(--rcs-blue);
        color: #ffffff;
    }

    .btn-primary:hover {
        background-color: #020b75;
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(3, 16, 169, 0.3);
    }

    .btn-outline {
        background-color: transparent;
        border-color: var(--rcs-blue);
        color: var(--rcs-blue);
    }

    .btn-outline:hover {
        background-color: var(--bg-light);
    }

    /* Specifications List */
    .specs-card {
        background: var(--bg-light);
        padding: 25px; 
        border-radius: 12px;
        border: 1px solid var(--border-color);
        margin-top: 20px;
    }

    .specs-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: 1fr; 
        gap: 4px; 
    }

    .specs-list li {
        padding-bottom: 4px; 
        border-bottom: 1px solid var(--border-color);
        font-size: 1.05rem; 
    }
    
    /* Mobile scaling and overflow prevention */
    @media (max-width: 768px) {
        .kpcontrol-container {
            padding: 20px 15px; 
            overflow-x: hidden;
        }
        
        .kpcontrol-section {
            gap: 30px; 
            margin-bottom: 45px;
        }

        .btn-group {
            flex-direction: column;
            width: 100%;
        }

        .btn {
            width: 100%;
            white-space: normal;
        }
    }