* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8fafc;
        }

        /* COMPACT IMPACT SECTION */
        #impact {
            background: #ffffff;
            padding: 60px 0;
            border-top: 1px solid #efeae1;
            border-bottom: 1px solid #efeae1;
        }

        .impact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .impact-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .impact-title {
            font-size: 2rem;
            font-weight: 600;
            color: #3d5073;
            margin-bottom: 10px;
        }

        .impact-subtitle {
            font-size: 1rem;
            color: #3d5073;
            max-width: 500px;
            margin: 0 auto;
        }

        .counters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            max-width: 800px;
            margin: 0 auto;
        }

        .counter-item {
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            padding: 25px 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #efeae1;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .counter-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #3176ba, #c03435);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .counter-item:nth-child(1)::before {
            background: linear-gradient(90deg, #3176ba, #2E2D29);
        }

        .counter-item:nth-child(2)::before {
            background: linear-gradient(90deg, #c03435, #ea2528);
        }

        .counter-item:nth-child(3)::before {
            background: linear-gradient(90deg, #3d5073, #3176ba);
        }

        .counter-item:nth-child(4)::before {
            background: linear-gradient(90deg, #ea2528, #c03435);
        }

        .counter-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            background: #ffffff;
        }

        .counter-item:hover::before {
            transform: scaleX(1);
        }

        .counter-top {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 8px;
        }

        .counter-icon {
            font-size: 1.8rem;
            color: #3d5073;
            transition: color 0.3s ease;
        }

        .counter-item:nth-child(1) .counter-icon {
            color: #3176ba;
        }

        .counter-item:nth-child(2) .counter-icon {
            color: #c03435;
        }

        .counter-item:nth-child(3) .counter-icon {
            color: #3d5073;
        }

        .counter-item:nth-child(4) .counter-icon {
            color: #ea2528;
        }

        .counter-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: #2E2D29;
        }

        .counter-label {
            font-size: 0.875rem;
            color: #3d5073;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 4px;
        }

        /* Alternative Design - Horizontal Layout */
        .counters-horizontal {
            display: none;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: #efeae1;
            border-radius: 12px;
            overflow: hidden;
            max-width: 900px;
            margin: 0 auto;
        }

        .counter-horizontal {
            background: #ffffff;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .counter-horizontal::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: #3176ba;
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.3s ease;
        }

        .counter-horizontal:nth-child(2)::before { background: #c03435; }
        .counter-horizontal:nth-child(3)::before { background: #3d5073; }
        .counter-horizontal:nth-child(4)::before { background: #ea2528; }

        .counter-horizontal:hover {
            background: #f8fafc;
            transform: translateY(-2px);
        }

        .counter-horizontal:hover::before {
            transform: scaleY(1);
        }

        .counter-horizontal .counter-icon {
            font-size: 1.5rem;
            margin-bottom: 8px;
        }

        .counter-horizontal .counter-number {
            font-size: 1.8rem;
            font-weight: 600;
            display: block;
            margin-bottom: 4px;
        }

        .counter-horizontal .counter-label {
            font-size: 0.75rem;
        }

        /* Toggle Button */
        .layout-toggle {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }

        .toggle-btn {
            background: #efeae1;
            border: 1px solid #3d5073;
            padding: 8px 16px;
            font-size: 0.875rem;
            font-weight: 500;
            color: #3d5073;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 0;
        }

        .toggle-btn:first-child {
            border-radius: 8px 0 0 8px;
        }

        .toggle-btn:last-child {
            border-radius: 0 8px 8px 0;
        }

        .toggle-btn.active {
            background: #3176ba;
            color: #ffffff;
            border-color: #3176ba;
        }

        .toggle-btn:hover:not(.active) {
            background: #d8dee8;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .counters-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .counters-horizontal {
                grid-template-columns: repeat(2, 1fr);
            }

            .counter-item {
                padding: 20px 15px;
            }

            .counter-number {
                font-size: 1.8rem;
            }

            .counter-icon {
                font-size: 1.5rem;
            }

            .impact-title {
                font-size: 1.75rem;
            }
        }

        @media (max-width: 480px) {
            .counters-grid,
            .counters-horizontal {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .counter-item,
            .counter-horizontal {
                padding: 18px 15px;
            }

            .counter-top {
                gap: 10px;
            }
        }

        /* Entry Animation */
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .counter-item,
        .counter-horizontal {
            animation: slideUp 0.6s ease forwards;
            opacity: 0;
        }

        .counter-item:nth-child(1) { animation-delay: 0.1s; }
        .counter-item:nth-child(2) { animation-delay: 0.2s; }
        .counter-item:nth-child(3) { animation-delay: 0.3s; }
        .counter-item:nth-child(4) { animation-delay: 0.4s; }