.elementor-34 .elementor-element.elementor-element-d77e19a{--display:flex;}.elementor-34 .elementor-element.elementor-element-20d8d49{margin:-27px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}/* Start custom CSS for html, class: .elementor-element-20d8d49 *//* GLOBAL RESET */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f0f2f5;
            color: #333;
        }

        /* ================= HIGHLIGHTS SECTION ================= */
        .sh-highlights {
            padding: 60px 15px;
            background: #f8f9fa;
        }

        .sh-container {
            max-width: 1100px;
            margin: auto;
            background: #ffffff;
            padding: 40px 30px;
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .sh-title {
            text-align: center;
            font-size: clamp(24px, 5vw, 34px); /* Fluid typography */
            font-weight: 800;
            margin-bottom: 40px;
            color: #1a1a1a;
        }

        /* PILL ROW: Responsive Grid */
        .sh-pill-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 50px;
        }

        .sh-pill {
            padding: 18px 20px;
            border-radius: 999px;
            font-weight: 600;
            text-align: center;
            font-size: 20px;
        }

        .green { background: #ecfdf5; color: #16a34a; border: 1px solid #bbf7d0; }
        .blue { background: #eff6ff; color: #2563eb; border: 1px solid #bfdbfe; }
        .orange { background: #fff7ed; color: #ea580c; border: 1px solid #fed7aa; }

        /* FEATURES GRID: Responsive Layout */
        .sh-features {
            display: grid;
            /* 3 columns on PC, 2 on Tablet, 1 on Mobile */
            grid-template-columns: repeat(3, 1fr); 
            gap: 30px;
        }

        .sh-feature {
            padding: 20px;
            transition: transform 0.3s ease;
        }

        .sh-feature:hover {
            transform: translateY(-5px);
        }

        .sh-feature h3 {
            text-align: center;
            font-size: 25px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #222;
        }

        .sh-feature p {
            text-align: center;
            color: #666;
            font-size: 18px;
            line-height: 1.5;
        }

        /* ================= MEDIA QUERIES ================= */

        /* Tablet View (Max 992px) */
        @media (max-width: 992px) {
            .sh-features {
                grid-template-columns: repeat(2, 1fr);
            }
            .sh-container {
                padding: 40px 20px;
            }
        }

        /* Mobile View (Max 600px) */
        @media (max-width: 600px) {
            .sh-features {
                grid-template-columns: 1fr; /* Stacked */
                gap: 20px;
            }
            .sh-pill-row {
                grid-template-columns: 1fr; /* Pills stacked on small mobile */
            }
            .sh-highlights {
                padding: 40px 10px;
            }
            .sh-title {
                margin-bottom: 30px;
            }
        }/* End custom CSS */