.bonuses-section {
            padding-bottom: 100px;
        }

        .bonuses-grid {
            display: grid;
            gap: 30px;
            margin-top: 30px;
        }

        .bonus-group {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
        }

        .bonus-group-header {
            background: var(--blue);
            color: white;
            padding: 25px 30px;
            font-size: 22px;
            font-weight: 700;
        }

        .bonus-items {
            padding: 20px;
            display: grid;
            gap: 15px;
        }

        .bonus-item {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 20px;
            align-items: center;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 12px;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }

        .bonus-item:hover {
            transform: translateX(5px);
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
            background: white;
        }

        .bonus-item-standard {
            border-left-color: #6c757d;
        }

        .bonus-item-standard:hover {
            border-left-color: var(--blue);
        }

        .bonus-item-highlighted {
            background: linear-gradient(135deg, #fff3cd 0%, #fff8e1 100%);
            border-left-color: #ffc107;
        }

        .bonus-item-highlighted:hover {
            background: linear-gradient(135deg, #ffe8a1 0%, #ffecb3 100%);
            box-shadow: 0 5px 20px rgba(255, 193, 7, 0.2);
        }

        .bonus-item-special {
            background: linear-gradient(135deg, #d4edda 0%, #e8f5e9 100%);
            border-left-color: #28a745;
        }

        .bonus-item-special:hover {
            background: linear-gradient(135deg, #c3e6cb 0%, #d4edda 100%);
            box-shadow: 0 5px 20px rgba(40, 167, 69, 0.2);
        }

        .bonus-description {
            font-size: 16px;
            color: #333;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .bonus-reward {
            font-size: 22px;
            font-weight: 700;
            color: #000000;
            white-space: nowrap;
        }

        .percentage-badge {
            display: inline-block;
            background: linear-gradient(135deg, #d9272c 0%, #b91d21 100%);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 700;
            box-shadow: 0 2px 8px rgba(217, 39, 44, 0.3);
        }

        .bonus-icon {
            font-size: 24px;
            margin-left: 5px;
        }

        .bonus-subtitle {
            font-size: 14px;
            color: #666;
            margin-top: 5px;
        }

        @media (max-width: 768px) {
            .bonuses-section {
                padding-bottom: 40px;
            }

            .title-section {
                font-size: 28px;
            }

            .section-intro {
                font-size: 16px;
                margin-bottom: 40px;
            }

            .bonus-group-header {
                padding: 20px;
                font-size: 20px;
            }

            .bonus-items {
                padding: 15px;
            }

            .bonus-item {
                grid-template-columns: 1fr;
                gap: 10px;
                padding: 15px;
            }

            .bonus-description {
                font-size: 15px;
            }

            .bonus-reward {
                font-size: 20px;
                text-align: left;
            }

            .percentage-badge {
                font-size: 12px;
                padding: 3px 10px;
            }
        }

        @media (max-width: 480px) {
            .bonus-description {
                font-size: 14px;
            }

            .bonus-reward {
                font-size: 18px;
            }
        }