 .reviews-container * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }

        .reviews-container {
            display: inline-block;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }

        .trustpilot-header {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .header-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 20px;
        }

        .trustpilot-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: #00b67a;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 24px;
        }

        .logo-text {
            font-size: 24px;
            font-weight: 700;
            color: #191919;
        }

        .rating-summary {
            text-align: center;
        }

        .rating-label {
            font-size: 20px;
            font-weight: 600;
            color: #666;
            margin-bottom: 8px;
        }

        .overall-rating {
            font-size: 48px;
            font-weight: 700;
            color: #191919;
            line-height: 1;
        }

        .rating-divider {
            font-size: 24px;
            color: #999;
        }

        .stars {
            color: #00b67a;
            font-size: 28px;
            margin: 8px 0;
            letter-spacing: 2px;
        }

        .review-count {
            color: #666;
            font-size: 14px;
        }

        .view-reviews-btn {
            display: inline-block;
            margin-top: 15px;
            color: #00b67a;
            text-decoration: underline;
            font-size: 14px;
            transition: color 0.2s;
        }

        .view-reviews-btn:hover {
            color: #00a169;
        }